add state to lexer for parrellel support

This commit is contained in:
2025-05-27 04:07:53 +01:00
parent 1540645759
commit 296600ee11
5 changed files with 55 additions and 28 deletions

View File

@@ -1 +1,7 @@
int lexer();
typedef struct {
const char *filename;
int current_column;
// add more fields as needed
} LexerState;
int lexer();