Login
7 branches 0 tags
Ben (Win10) Cleaned up the VM a bit f888f34 3 years ago 590 Commits
nujel / lib / allocation / string.h
#ifndef NUJEL_LIB_ALLOC_STRING
#define NUJEL_LIB_ALLOC_STRING
#include "../nujel.h"

#define STR_MAX  (1<<14)
extern lString  lStringList [STR_MAX];
extern uint     lStringActive;
extern uint     lStringMax;
extern lString *lStringFFree;

void     lStringInit   ();
lString *lStringAlloc  ();
void     lStringFree   (lString *s);

#endif