diff options
| author | Mistivia <i@mistivia.com> | 2025-06-20 18:12:25 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-20 18:12:25 +0800 |
| commit | 3cef9f993de2e0380c859d0e0ec88c07bfc3635f (patch) | |
| tree | 7f98824d36d545ed90dd4adc34a3e3d2c7cfc1ff /src/interp.h | |
| parent | ad580b3401deb4a41ee3a8f17824d136ee5cf38d (diff) | |
finish function
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 e8b3980..ae4c451 100644 --- a/src/interp.h +++ b/src/interp.h @@ -65,6 +65,7 @@ void lisp_defvar(Interp *interp, const char *name, SExpRef val); void lisp_print(Interp *interp, SExpRef obj, FILE *fp); SExpRef lisp_lookup(Interp *interp, const char *name); SExpRef lisp_lookup_func(Interp *interp, const char *name); +SExpRef lisp_apply(Interp *interp, SExpRef fn, SExpRef args); SExpRef lisp_cons(Interp *interp, SExpRef a, SExpRef b); SExpRef lisp_dup(Interp *interp, SExpRef arg); bool lisp_nilp(Interp *interp, SExpRef arg); |
