diff options
| author | Mistivia <i@mistivia.com> | 2025-06-21 16:04:00 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-21 16:04:00 +0800 |
| commit | ca22ae606ca674a91e28597a96641c01f7eacb24 (patch) | |
| tree | 01fadb02db0ee2bffe9217373c304dae7c48e19d /src/builtins.h | |
| parent | 1b2e36b342be527937ad350690023cb50190f1e0 (diff) | |
add tests
Diffstat (limited to 'src/builtins.h')
| -rw-r--r-- | src/builtins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/builtins.h b/src/builtins.h index 5ed9133..8f9c428 100644 --- a/src/builtins.h +++ b/src/builtins.h @@ -3,19 +3,19 @@ #include "interp.h" +SExpRef builtin_exit(Interp *interp, SExpRef sexp); +SExpRef builtin_error(Interp *interp, SExpRef sexp); 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); |
