Attempting to declutter the lexer and tokenizer by rereolling them into the 'Scanner' object.

This commit is contained in:
2022-05-03 21:20:38 +00:00
parent 1900b504e7
commit 2c9478d311
4 changed files with 207 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef SCANNER_H
#define SCANNER_H
#include <stdio.h>
#include <string.h>
#include "stdlib.h"
#include "token.h"
#include "list.h"
List* GenerateTokenList(const char*);
#endif