Login
7 branches 0 tags
Ben (X13/Arch) Started making use of [fmt] in the stdLib af54da2 3 years ago 400 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