diff options
| author | Mistivia <i@mistivia.com> | 2025-06-28 15:19:26 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-28 15:19:26 +0800 |
| commit | 9efc0e78ad1609217752b5aa02fbb389d726e9c7 (patch) | |
| tree | 4fcc801fa760ed9c0796afcc80662b9e9fc927ff /src/builtins.h | |
| parent | 878a056f3accafaa797446eb3a3b1a66b36d0d07 (diff) | |
add builtin 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 0d3c5cc..1a8e927 100644 --- a/src/builtins.h +++ b/src/builtins.h @@ -3,6 +3,12 @@ #include "interp.h" +SExpRef builtin_logior(Interp *interp, SExpRef args); +SExpRef builtin_logxor(Interp *interp, SExpRef args); +SExpRef builtin_lognot(Interp *interp, SExpRef args); +SExpRef builtin_lsh(Interp *interp, SExpRef args); +SExpRef builtin_ash(Interp *interp, SExpRef args); +SExpRef builtin_functionp(Interp *interp, SExpRef args); SExpRef builtin_setnth(Interp *interp, SExpRef args); SExpRef builtin_setnthcdr(Interp *interp, SExpRef args); SExpRef builtin_foldl(Interp *interp, SExpRef args); |
