diff options
| author | Mistivia <i@mistivia.com> | 2025-06-27 21:21:42 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-27 21:21:42 +0800 |
| commit | 878a056f3accafaa797446eb3a3b1a66b36d0d07 (patch) | |
| tree | f56330127b96bdff11f2bd37b7229a94d02fcacc /src/builtins.h | |
| parent | 0ba662762023b7e3788690d9990ab39e89fd6f34 (diff) | |
add more funcs
Diffstat (limited to 'src/builtins.h')
| -rw-r--r-- | src/builtins.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/builtins.h b/src/builtins.h index 673db23..0d3c5cc 100644 --- a/src/builtins.h +++ b/src/builtins.h @@ -3,6 +3,12 @@ #include "interp.h" +SExpRef builtin_setnth(Interp *interp, SExpRef args); +SExpRef builtin_setnthcdr(Interp *interp, SExpRef args); +SExpRef builtin_foldl(Interp *interp, SExpRef args); +SExpRef builtin_append(Interp *interp, SExpRef args); +SExpRef builtin_nconc(Interp *interp, SExpRef args); +SExpRef builtin_logand(Interp *interp, SExpRef args); SExpRef builtin_charp(Interp *interp, SExpRef args); SExpRef builtin_char_eq(Interp *interp, SExpRef args); SExpRef builtin_char_gt(Interp *interp, SExpRef args); |
