summaryrefslogtreecommitdiff
path: root/lex.h
diff options
context:
space:
mode:
Diffstat (limited to 'lex.h')
-rw-r--r--lex.h34
1 files changed, 1 insertions, 33 deletions
diff --git a/lex.h b/lex.h
index 4c6662b..9a1be52 100644
--- a/lex.h
+++ b/lex.h
@@ -3,39 +3,7 @@
#include <stdio.h>
-#define MAX_IDENT_LENGTH 128
-
-enum TOKEN_TYPE {
- /* Keywords */
- TOK_MODULE,
- TOK_INPUT,
- TOK_EXPR,
- TOK_COLON,
- TOK_EOL,
- TOK_OR,
- TOK_AND,
- TOK_XOR,
- TOK_NOT,
- TOK_NAND,
- TOK_NOR,
-
- /* Etc */
- TOK_IDENT
-};
-
-struct location {
- size_t line;
- size_t column;
- size_t leading_whitespace_len;
-};
-
-struct token {
- enum TOKEN_TYPE type;
- struct location loc;
- char value[MAX_IDENT_LENGTH];
- size_t span;
- struct token *next;
-};
+#include "token.h"
struct token* lex_file(FILE*);
const char *get_token_description(enum TOKEN_TYPE);