core: lexer: Add unsigned type tokens

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-05-23 08:52:56 -04:00
parent 62451acdd4
commit a6f776e1f2
3 changed files with 33 additions and 1 deletions
+4
View File
@@ -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;
/*