aboutsummaryrefslogtreecommitdiff
path: root/src/interp.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-22 18:10:32 +0800
committerMistivia <i@mistivia.com>2025-06-22 18:10:32 +0800
commitdacb6b16b205661189c51cb7ce25efab96e8682b (patch)
tree0acd0c2fc6dfc4a1b690bc8a50bc36bce1b62bdd /src/interp.h
parent665fb6be7eef3703c8e543645d09f329b9a466c5 (diff)
use nreverse
Diffstat (limited to 'src/interp.h')
-rw-r--r--src/interp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interp.h b/src/interp.h
index 36fd1e0..d4940e0 100644
--- a/src/interp.h
+++ b/src/interp.h
@@ -77,6 +77,7 @@ SExpRef Interp_load_file(Interp *interp, const char *filename);
const char* lisp_to_string(Interp *interp, SExpRef val);
SExpRef lisp_macroexpand1(Interp *interp, SExpRef macro, SExpRef args);
+SExpRef lisp_nreverse(Interp *interp, SExpRef lst);
SExpRef lisp_reverse(Interp *interp, SExpRef lst);
void lisp_defun(Interp *interp, SExpRef name, SExpRef val);
void lisp_defvar(Interp *interp, SExpRef name, SExpRef val);