diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-03-22 10:38:17 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-03-22 10:38:17 -0700 |
commit | 946c88ae095260a816aae8e1d5eacb32e4424718 (patch) | |
tree | 8fab69b645bd690e524ee4250f45bfa69737f3d5 /arith.c | |
parent | 6254e4fa987437b1d785cae66122d707c886e144 (diff) | |
download | txr-946c88ae095260a816aae8e1d5eacb32e4424718.tar.gz txr-946c88ae095260a816aae8e1d5eacb32e4424718.tar.bz2 txr-946c88ae095260a816aae8e1d5eacb32e4424718.zip |
* arith.c (floorf, ceili, sine, cosi, atang, loga): New functions.
* eval.c (eval_init): New intrinsic functions registered:
floor, ceil, sin, cons, atan, log.
* lib.h (floorf, ceili, sine, cosi, atang, loga): Declared.
* txr.1: Doc stub section for new functions.
* txr.vim: Highighting added.
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -1296,6 +1296,36 @@ inval: anum, bnum, nao); } +val floorf(val num) +{ + return flo(floor(c_flo(to_float(lit("floor"), num)))); +} + +val ceili(val num) +{ + return flo(ceil(c_flo(to_float(lit("ceil"), num)))); +} + +val sine(val num) +{ + return flo(sin(c_flo(to_float(lit("sin"), num)))); +} + +val cosi(val num) +{ + return flo(cos(c_flo(to_float(lit("cos"), num)))); +} + +val atang(val num) +{ + return flo(atan(c_flo(to_float(lit("atan"), num)))); +} + +val loga(val num) +{ + return flo(log(c_flo(to_float(lit("log"), num)))); +} + /* * TODO: replace this text-based hack! */ |