actually initialize token_table

This commit is contained in:
anon 2023-08-24 19:18:02 +02:00
parent 5e488b2966
commit b1c912689f

View File

@ -247,6 +247,9 @@ hl_group_t * preprocessor_hl = NULL;
hl_group_t * symbol_hl = NULL;
int hl_init(void) {
vector_init(&token_table,
token_table.element_size,
token_table.element_count);
return 0;
}