Created a tokenizer and the supporting code, currently processes text that is not a string literal.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user