CE parser implement comments
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 41s
Build documentation / build-and-deploy (push) Successful in 55s

This commit is contained in:
2026-04-12 21:30:20 +02:00
parent bdce9ef7c5
commit 169fba6ee7

View File

@@ -159,6 +159,9 @@ void tokenize (struct list_node_link** tokens, const char* text) {
continue;
}
if (*p == '#')
return;
if (*p == '"') {
p++;
struct token* token = arena_malloc (&arena, sizeof (*token));