Login
7 branches 0 tags
Ben (Win10) Fixed displaying of dotted pairs and improved [asmdebug] c45b30a 3 years ago 756 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