diff options
| author | Mistivia <i@mistivia.com> | 2025-06-20 15:28:01 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-20 15:28:01 +0800 |
| commit | ad580b3401deb4a41ee3a8f17824d136ee5cf38d (patch) | |
| tree | 40731b13e0e17d65272610d93ccaf551f5479526 /src/interp.h | |
| parent | 815b972460fb83267a719f82afd79c2abaac80cd (diff) | |
defvar
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 c794ed9..e8b3980 100644 --- a/src/interp.h +++ b/src/interp.h @@ -61,6 +61,7 @@ void Interp_add_userfunc(Interp *self, const char *name, LispUserFunc fn); #define POP_REG() { interp->reg = CDR(interp->reg); } 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); SExpRef lisp_lookup(Interp *interp, const char *name); SExpRef lisp_lookup_func(Interp *interp, const char *name); |
