Login
7 branches 0 tags
Ben (X13/Arch) Revert "Removed /int routines, since they are unneccessary" 1212758 3 years ago 511 Commits
nujel / lib / type / native-function.h
#ifndef NUJEL_LIB_TYPE_NFUNC
#define NUJEL_LIB_TYPE_NFUNC
#include "../nujel.h"

lVal     *lAddNativeFunc      (lClosure *c, const char *sym, const char *args, const char *doc, lVal *(*func)(lClosure *,lVal *));
lVal     *lAddSpecialForm     (lClosure *c, const char *sym, const char *args, const char *doc, lVal *(*func)(lClosure *,lVal *));

#endif