summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorIan Moffett <ian@mirocom.org>2026-05-23 08:52:56 -0400
committerIan Moffett <ian@mirocom.org>2026-05-23 08:52:56 -0400
commita6f776e1f2bd634395db0ddbbdf40575ad5bca23 (patch)
tree6071899cd8ff872fb9f3ee629d2d87e7dec64e7d /include
parent62451acdd4dd4cf369a801b0603e2e0841bfb627 (diff)
core: lexer: Add unsigned type tokens
Signed-off-by: Ian Moffett <ian@mirocom.org>
Diffstat (limited to 'include')
-rw-r--r--include/cescal/token.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/cescal/token.h b/include/cescal/token.h
index 21db2ac..5f6b903 100644
--- a/include/cescal/token.h
+++ b/include/cescal/token.h
@@ -26,6 +26,10 @@ typedef enum {
TT_PROC, /* 'proc' */
TT_BEGIN, /* 'begin' */
TT_END, /* 'end' */
+ TT_U8, /* 'u8' */
+ TT_U16, /* 'u16' */
+ TT_U32, /* 'u32' */
+ TT_U64, /* 'u64' */
} tt_t;
/*