Login
7 branches 0 tags
Ben (X13/Arch) Simplified the GC by using more macros 24a99c3 3 years ago 753 Commits
nujel / lib / operations.h
#ifndef NUJEL_LIB_OPERATIONS
#define NUJEL_LIB_OPERATIONS
#include "common.h"

void lOperationsBase(lClosure *c);

lVal *lAdd(lClosure *c, lVal *a, lVal *b);
lVal *lSub(lClosure *c, lVal *a, lVal *b);
lVal *lMul(lClosure *c, lVal *a, lVal *b);
lVal *lDiv(lClosure *c, lVal *a, lVal *b);
lVal *lRem(lClosure *c, lVal *a, lVal *b);

#endif