summaryrefslogtreecommitdiffstats
path: root/dimension/parse.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-03-20 15:30:40 -0400
committerTavian Barnes <tavianator@gmail.com>2010-03-20 15:30:40 -0400
commit5da32d0dce6b8ade0b636b83f67b6244e6a56494 (patch)
tree49d15326afa1a2bdde55b5cc37620e68bb4b5a20 /dimension/parse.h
parent4566f4e34afaab1c47120e8a377859d88a142ffe (diff)
downloaddimension-5da32d0dce6b8ade0b636b83f67b6244e6a56494.tar.xz
Implement almost all float functions.
Diffstat (limited to 'dimension/parse.h')
-rw-r--r--dimension/parse.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/dimension/parse.h b/dimension/parse.h
index f088115..4648c87 100644
--- a/dimension/parse.h
+++ b/dimension/parse.h
@@ -106,6 +106,22 @@ typedef enum {
DMNSN_AST_INT_DIV,
DMNSN_AST_EXP,
DMNSN_AST_FLOOR,
+ DMNSN_AST_INT,
+ DMNSN_AST_LN,
+ DMNSN_AST_LOG,
+ DMNSN_AST_MOD,
+ DMNSN_AST_POW,
+ DMNSN_AST_RADIANS,
+ DMNSN_AST_SIN,
+ DMNSN_AST_SINH,
+ DMNSN_AST_SQRT,
+ DMNSN_AST_STRCMP,
+ DMNSN_AST_STRLEN,
+ DMNSN_AST_TAN,
+ DMNSN_AST_TANH,
+ DMNSN_AST_VAL,
+ DMNSN_AST_VDOT,
+ DMNSN_AST_VLENGTH,
DMNSN_AST_EQUAL,
DMNSN_AST_NOT_EQUAL,