Setup a skeleton for the scanner.

This commit is contained in:
2022-02-09 19:53:57 +00:00
parent 68882d05a3
commit d6a3935588
3 changed files with 88 additions and 1 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ int main(int argc, char** argv) {
void RunFile(const char* path) {
printf("Running '%s'\n", path);
char* contents = GetFileContents(path);
printf("%s", contents);
//Tokenize(contents);
}
char* GetFileContents(const char* path) {