aboutsummaryrefslogtreecommitdiff
path: root/interpreter/lex.h
diff options
context:
space:
mode:
authorCamil Staps2016-10-14 22:17:01 +0200
committerCamil Staps2016-10-14 22:17:01 +0200
commit6ca377762516888b0488d60c971e0660ae6035f4 (patch)
tree74c6b013aa80f61cd0bd511a097e54a686b33680 /interpreter/lex.h
parentMake debug graphs a command line option (-g) (diff)
token_list using an array for memory efficiency
Diffstat (limited to 'interpreter/lex.h')
-rw-r--r--interpreter/lex.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/interpreter/lex.h b/interpreter/lex.h
index e6f525b..45a5a3c 100644
--- a/interpreter/lex.h
+++ b/interpreter/lex.h
@@ -3,6 +3,8 @@
#include "syntax.h"
+#define INITIAL_TOKEN_LIST_SIZE 20
+
struct token_list *lex(struct token_list*, char*);
#endif