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/primitives.h | |
| parent | 1b2e36b342be527937ad350690023cb50190f1e0 (diff) | |
add tests
Diffstat (limited to 'src/primitives.h')
| -rw-r--r-- | src/primitives.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/primitives.h b/src/primitives.h index 5e22ba9..f5dd8e8 100644 --- a/src/primitives.h +++ b/src/primitives.h @@ -3,6 +3,13 @@ #include "interp.h" +SExpRef primitive_assert_error(Interp *interp, SExpRef sexp, bool istail); +SExpRef primitive_load(Interp *interp, SExpRef sexp, bool istail); +SExpRef primitive_return(Interp *interp, SExpRef sexp, bool istail); +SExpRef primitive_break(Interp *interp, SExpRef sexp, bool istail); +SExpRef primitive_continue(Interp *interp, SExpRef sexp, bool istail); +SExpRef primitive_assert(Interp *interp, SExpRef sexp, bool istail); +SExpRef primitive_eval(Interp *interp, SExpRef sexp, bool istail); SExpRef primitive_if(Interp *interp, SExpRef sexp, bool istail); SExpRef primitive_cond(Interp *interp, SExpRef sexp, bool istail); SExpRef primitive_progn(Interp *interp, SExpRef sexp, bool istail); |
