Created a tokenizer and the supporting code, currently processes text that is not a string literal.

This commit is contained in:
2025-01-07 23:52:03 -06:00
parent 2c85077031
commit 7e70c6fd19
10 changed files with 351 additions and 12 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef ARRAY_H
#define ARRAY_H
typedef struct _array {
int Capacity;
int Size;
void** Items;
} Array;
Array* ArrayCreate(void);
int ArrayAdd(Array* array, void* item);
#endif