add mulitple variable declaration, with null default. add call

This commit is contained in:
2025-06-05 04:04:41 +01:00
parent 7b76b0d888
commit 61d8bc61c3
14 changed files with 186 additions and 111 deletions

View File

@@ -8,7 +8,8 @@
typedef struct {
const char *path;
FILE *file;
int current_column;
size_t current_line;
size_t current_column;
DArray *tokens;
// add more fields as needed
} LexerState;