Attempting to declutter the lexer and tokenizer by rereolling them into the 'Scanner' object.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user