Login
7 branches 0 tags
Ben (Win10) Fixed [while] bytecompiler, fixing all bc tests b2d06d9 3 years ago 469 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