Login
7 branches 0 tags
Ben (X13/Arch) lBytecodeArray's are now references and reduced struct sizes 2b26987 3 years ago 622 Commits
nujel / lib / operation.h
#ifndef NUJEL_LIB_OPERATION
#define NUJEL_LIB_OPERATION
#include "nujel.h"

lVal *lnfCat     (lClosure *c, lVal *v);
lVal *lnfArrNew  (lClosure *c, lVal *v);
lVal *lnfTreeNew (lClosure *c, lVal *v);
lVal *lnfVec     (lClosure *c, lVal *v);

void lAddCoreFuncs(lClosure *c);

#endif