Created a tokenizer and the supporting code, currently processes text that is not a string literal.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#ifndef TOKENIZER_H
|
||||
#define TOKENIZER_H
|
||||
|
||||
#include "array.h"
|
||||
#include "dictionary.h"
|
||||
#include "token.h"
|
||||
|
||||
Array* Tokenize(const char* text, Dictionary** variables);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user