diff options
| author | Mistivia <i@mistivia.com> | 2025-06-25 22:59:47 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-25 23:05:37 +0800 |
| commit | 8cc69279f5f4e786b5795c5f185c5e949708761e (patch) | |
| tree | 188b31eedacccf18171de3dd9262e415bcf15038 /src/builtins.h | |
| parent | 44642d96eaef834b4bb846d27347ee681f9f5f7b (diff) | |
add char funcs
Diffstat (limited to 'src/builtins.h')
| -rw-r--r-- | src/builtins.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/builtins.h b/src/builtins.h index bf97086..673db23 100644 --- a/src/builtins.h +++ b/src/builtins.h @@ -3,6 +3,18 @@ #include "interp.h" +SExpRef builtin_charp(Interp *interp, SExpRef args); +SExpRef builtin_char_eq(Interp *interp, SExpRef args); +SExpRef builtin_char_gt(Interp *interp, SExpRef args); +SExpRef builtin_char_lt(Interp *interp, SExpRef args); +SExpRef builtin_char_ge(Interp *interp, SExpRef args); +SExpRef builtin_char_le(Interp *interp, SExpRef args); +SExpRef builtin_char_neq(Interp *interp, SExpRef args); +SExpRef builtin_int2char(Interp *interp, SExpRef args); +SExpRef builtin_char2int(Interp *interp, SExpRef args); +SExpRef builtin_alphabeticp(Interp *interp, SExpRef args); +SExpRef builtin_numericp(Interp *interp, SExpRef args); +SExpRef builtin_alphanump(Interp *interp, SExpRef args); SExpRef builtin_listp(Interp *interp, SExpRef args); SExpRef builtin_consp(Interp *interp, SExpRef args); SExpRef builtin_atomp(Interp *interp, SExpRef args); |
