summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-03-04 23:54:02 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-03-04 23:54:02 -0800
commit22ed7f473a5c1e1db722286f98b2457a74cc1ca7 (patch)
tree203257c74c2b30f1aaa11afc51f28d1d55f80755 /arith.c
parent039e2ebdfa5670de7a35084fd480fe204afbdc8b (diff)
downloadtxr-22ed7f473a5c1e1db722286f98b2457a74cc1ca7.tar.gz
txr-22ed7f473a5c1e1db722286f98b2457a74cc1ca7.tar.bz2
txr-22ed7f473a5c1e1db722286f98b2457a74cc1ca7.zip
* arith.c (logten): New function.
* eval.c (eval_init): logten registered as intrinsic. * lib.h (logten): Declared. * txr.1: Documented.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arith.c b/arith.c
index f227f217..1eb9c5fb 100644
--- a/arith.c
+++ b/arith.c
@@ -1439,6 +1439,11 @@ val loga(val num)
return flo(log(c_flo(to_float(lit("log"), num))));
}
+val logten(val num)
+{
+ return flo(log10(c_flo(to_float(lit("log"), num))));
+}
+
val expo(val num)
{
return flo(exp(c_flo(to_float(lit("exp"), num))));