diff options
| author | Mistivia <i@mistivia.com> | 2025-06-21 16:58:47 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-21 16:58:47 +0800 |
| commit | 1de8cda84460198e764a94c1f0f106ecaf001331 (patch) | |
| tree | 48bd2e09256c689b120183cf0026f2532617b555 /src/builtins.h | |
| parent | ca22ae606ca674a91e28597a96641c01f7eacb24 (diff) | |
add format
Diffstat (limited to 'src/builtins.h')
| -rw-r--r-- | src/builtins.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/builtins.h b/src/builtins.h index 8f9c428..8568a92 100644 --- a/src/builtins.h +++ b/src/builtins.h @@ -3,6 +3,9 @@ #include "interp.h" +SExpRef builtin_format(Interp *interp, SExpRef sexp); +SExpRef builtin_concat(Interp *interp, SExpRef sexp); +SExpRef builtin_print(Interp *interp, SExpRef sexp); SExpRef builtin_exit(Interp *interp, SExpRef sexp); SExpRef builtin_error(Interp *interp, SExpRef sexp); SExpRef builtin_list(Interp *interp, SExpRef sexp); @@ -22,7 +25,7 @@ SExpRef builtin_gt(Interp *interp, SExpRef sexp); SExpRef builtin_lt(Interp *interp, SExpRef sexp); SExpRef builtin_ge(Interp *interp, SExpRef sexp); SExpRef builtin_le(Interp *interp, SExpRef sexp); -SExpRef builtin_show(Interp *interp, SExpRef sexp); +SExpRef builtin_princ(Interp *interp, SExpRef sexp); SExpRef builtin_gcstat(Interp *interp, SExpRef sexp); #endif |
