Login
7 branches 0 tags
Ben (Win10) Revert "Added new GH action, macos11 and older/newer Win" d9e506d 4 years ago 299 Commits
nujel / lib / allocation / string.h
#pragma once
#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);