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

@@ -17,7 +17,7 @@ int main(int argc, char *argv[]) {
darray_init(&tokens, sizeof(Token));
LexerState state = {path, fopen(path, "r"), 0, &tokens};
LexerState state = {path, fopen(path, "r"), 0, 0, &tokens};
lexer(state);
fclose(state.file);