aboutsummaryrefslogtreecommitdiff
path: root/src/builtins.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-07-01 11:29:23 +0800
committerMistivia <i@mistivia.com>2025-07-01 11:29:23 +0800
commit6d89e9697b1740366f23387964122d264475b49c (patch)
tree3714fd1f3b73ab68d44fed59dcc7ee79938217a0 /src/builtins.h
parentcdff133ab8e8a0c9ec62586abc3729a14e1cbba5 (diff)
add docs
Diffstat (limited to 'src/builtins.h')
-rw-r--r--src/builtins.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/builtins.h b/src/builtins.h
index 70f58fd..66d6d1a 100644
--- a/src/builtins.h
+++ b/src/builtins.h
@@ -46,25 +46,6 @@ SExpRef builtin_concat(Interp *interp, SExpRef args);
SExpRef builtin_print(Interp *interp, SExpRef args);
SExpRef builtin_princ(Interp *interp, SExpRef args);
-SExpRef builtin_abs(Interp *interp, SExpRef args);
-SExpRef builtin_pow(Interp *interp, SExpRef args);
-SExpRef builtin_floor(Interp *interp, SExpRef args);
-SExpRef builtin_truncate(Interp *interp, SExpRef args);
-SExpRef builtin_ceiling(Interp *interp, SExpRef args);
-SExpRef builtin_round(Interp *interp, SExpRef args);
-SExpRef builtin_sin(Interp *interp, SExpRef args);
-SExpRef builtin_cos(Interp *interp, SExpRef args);
-SExpRef builtin_tan(Interp *interp, SExpRef args);
-SExpRef builtin_asin(Interp *interp, SExpRef args);
-SExpRef builtin_acos(Interp *interp, SExpRef args);
-SExpRef builtin_atan(Interp *interp, SExpRef args);
-SExpRef builtin_ln(Interp *interp, SExpRef args);
-SExpRef builtin_log10(Interp *interp, SExpRef args);
-SExpRef builtin_log2(Interp *interp, SExpRef args);
-SExpRef builtin_exp(Interp *interp, SExpRef args);
-SExpRef builtin_min(Interp *interp, SExpRef args);
-SExpRef builtin_max(Interp *interp, SExpRef args);
-
SExpRef builtin_add(Interp *interp, SExpRef args);
SExpRef builtin_sub(Interp *interp, SExpRef args);
SExpRef builtin_mul(Interp *interp, SExpRef args);