diff options
| author | Mistivia <i@mistivia.com> | 2025-06-24 19:50:12 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-24 19:50:12 +0800 |
| commit | a19d0c8bc99948af39b43cc8291abfa89e5a57f8 (patch) | |
| tree | 3c29d474b6e93c85190c5758af88b470eca5e9af /src/builtins.h | |
| parent | ec5910bea4db98b40db374a2484380fe1892c563 (diff) | |
add list funcs
Diffstat (limited to 'src/builtins.h')
| -rw-r--r-- | src/builtins.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/builtins.h b/src/builtins.h index 3832afb..e7712d4 100644 --- a/src/builtins.h +++ b/src/builtins.h @@ -3,6 +3,11 @@ #include "interp.h" +SExpRef builtin_map(Interp *interp, SExpRef args); +SExpRef builtin_filter(Interp *interp, SExpRef args); +SExpRef builtin_remove(Interp *interp, SExpRef args); +SExpRef builtin_count(Interp *interp, SExpRef args); +SExpRef builtin_foreach(Interp *interp, SExpRef args); SExpRef builtin_set_car(Interp *interp, SExpRef args); SExpRef builtin_set_cdr(Interp *interp, SExpRef args); SExpRef builtin_length(Interp *interp, SExpRef args); |
