diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-03-20 02:01:16 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-03-20 02:01:16 -0400 |
commit | 4566f4e34afaab1c47120e8a377859d88a142ffe (patch) | |
tree | 626541ad48efe078a4e6f86cf1af903d8225320b /dimension/parse.h | |
parent | fc06cb624d79788923ab2dedb3cd2ccab53cb2b4 (diff) | |
download | dimension-4566f4e34afaab1c47120e8a377859d88a142ffe.tar.xz |
A bunch more float functions.
Diffstat (limited to 'dimension/parse.h')
-rw-r--r-- | dimension/parse.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dimension/parse.h b/dimension/parse.h index 8a572f2..f088115 100644 --- a/dimension/parse.h +++ b/dimension/parse.h @@ -90,7 +90,22 @@ typedef enum { DMNSN_AST_DOT_T, DMNSN_AST_DOT_TRANSMIT, + DMNSN_AST_ABS, + DMNSN_AST_ACOS, + DMNSN_AST_ACOSH, + DMNSN_AST_ASC, + DMNSN_AST_ASIN, + DMNSN_AST_ASINH, + DMNSN_AST_ATAN, + DMNSN_AST_ATAN2, + DMNSN_AST_ATANH, + DMNSN_AST_CEIL, + DMNSN_AST_COS, + DMNSN_AST_COSH, + DMNSN_AST_DEGREES, + DMNSN_AST_INT_DIV, DMNSN_AST_EXP, + DMNSN_AST_FLOOR, DMNSN_AST_EQUAL, DMNSN_AST_NOT_EQUAL, |