aboutsummaryrefslogtreecommitdiff
path: root/src/builtins.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/builtins.h')
-rw-r--r--src/builtins.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/builtins.h b/src/builtins.h
index d4fcaf5..4e4e39f 100644
--- a/src/builtins.h
+++ b/src/builtins.h
@@ -7,11 +7,17 @@ SExpRef builtin_list(Interp *interp, SExpRef sexp);
SExpRef builtin_car(Interp *interp, SExpRef sexp);
SExpRef builtin_cdr(Interp *interp, SExpRef sexp);
SExpRef builtin_cons(Interp *interp, SExpRef sexp);
+SExpRef builtin_not(Interp *interp, SExpRef sexp);
SExpRef builtin_add(Interp *interp, SExpRef sexp);
SExpRef builtin_sub(Interp *interp, SExpRef sexp);
+SExpRef builtin_mul(Interp *interp, SExpRef sexp);
+SExpRef builtin_div(Interp *interp, SExpRef sexp);
+SExpRef builtin_idiv(Interp *interp, SExpRef sexp);
+SExpRef builtin_mod(Interp *interp, SExpRef sexp);
SExpRef builtin_num_equal(Interp *interp, SExpRef sexp);
+SExpRef builtin_num_neq(Interp *interp, SExpRef sexp);
SExpRef builtin_gt(Interp *interp, SExpRef sexp);
SExpRef builtin_lt(Interp *interp, SExpRef sexp);
SExpRef builtin_ge(Interp *interp, SExpRef sexp);