15 lines
279 B
C
15 lines
279 B
C
|
#if !defined(FCODER_LEX_GEN_HAND_WRITTEN_TYPES)
|
||
|
#define FCODER_LEX_GEN_HAND_WRITTEN_TYPES
|
||
|
|
||
|
struct Lexeme_Table_Value{
|
||
|
Token_Base_Kind base_kind;
|
||
|
u16 sub_kind;
|
||
|
};
|
||
|
|
||
|
struct Lexeme_Table_Lookup{
|
||
|
b32 found_match;
|
||
|
Token_Base_Kind base_kind;
|
||
|
u16 sub_kind;
|
||
|
};
|
||
|
|
||
|
#endif
|