Login
7 branches 0 tags
Ben (Win10) Added support for formatted output in binary/hex/octal d28575c 3 years ago 388 Commits
nujel / lib / allocation / closure.h
#pragma once
#include "../nujel.h"

#define CLO_MAX (1<<16)
extern lClosure lClosureList[CLO_MAX];
extern uint     lClosureMax;
extern uint     lClosureActive;
extern lClosure *lClosureFFree;

void      lClosureInit      ();
lClosure *lClosureAlloc     ();
void      lClosureFree      (lClosure *c);
int       lClosureID        (const lClosure *n);