diff options
| author | Ian Moffett <ian@mirocom.org> | 2026-05-23 09:01:18 -0400 |
|---|---|---|
| committer | Ian Moffett <ian@mirocom.org> | 2026-05-23 09:01:18 -0400 |
| commit | 5f726024711e0c803a50e3124820d7d4b214dd93 (patch) | |
| tree | 4bb7414cfd961511af9c33f467156465cb5d02cf /include | |
| parent | 2ec8122a91fc09d6ce0dff502718b139a9d5689d (diff) | |
core: lexer: Add operational tokens
Signed-off-by: Ian Moffett <ian@mirocom.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/cescal/token.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/cescal/token.h b/include/cescal/token.h index 1f214bb..8757841 100644 --- a/include/cescal/token.h +++ b/include/cescal/token.h @@ -19,6 +19,11 @@ typedef enum { TT_COMMA, /* ',' */ TT_COLON, /* ':' */ TT_ARROW, /* '->' */ + TT_PLUS, /* '+' */ + TT_MINUS, /* '-' */ + TT_SLASH, /* '/' */ + TT_STAR, /* '*' */ + TT_EQUALS, /* '=' */ TT_DEFINE, /* '#define' */ TT_IFNDEF, /* '#ifndef' */ TT_IFDEF, /* '#ifdef' */ |
