diff options
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); |
