Added a peek function to the tokenizer.

This commit is contained in:
2022-01-31 22:06:52 +00:00
parent f88cfda90a
commit ebc1d30c1c
3 changed files with 48 additions and 20 deletions
+2 -1
View File
@@ -6,6 +6,7 @@
#include <string.h>
#include "list.h"
char* SplitOnBasicGrammar(char*);
char* GetToken(char*);
char* PeekNextToken(void);
#endif