Login
7 branches 0 tags
Ben (X13/Arch) Added some writing why I didn't choose tinyscheme fe405d6 3 years ago 499 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