diff options
| author | Mistivia <i@mistivia.com> | 2025-06-20 19:56:30 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-20 19:56:30 +0800 |
| commit | e88146d1f14577c68de8117964c222c754757a84 (patch) | |
| tree | 380f57dff78ee3c898c01c291df96c7a81cac85f /src/interp.h | |
| parent | 762e68ac1b2b9825b08d11fc00bafbac677d5354 (diff) | |
quasiquote
Diffstat (limited to 'src/interp.h')
| -rw-r--r-- | src/interp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interp.h b/src/interp.h index ae4c451..1eaa920 100644 --- a/src/interp.h +++ b/src/interp.h @@ -60,6 +60,7 @@ void Interp_add_userfunc(Interp *self, const char *name, LispUserFunc fn); #define PUSH_REG(_x) { interp->reg = CONS((_x), interp->reg); } #define POP_REG() { interp->reg = CDR(interp->reg); } +SExpRef lisp_reverse(Interp *interp, SExpRef lst); void lisp_defun(Interp *interp, const char *name, SExpRef val); void lisp_defvar(Interp *interp, const char *name, SExpRef val); void lisp_print(Interp *interp, SExpRef obj, FILE *fp); |
