aboutsummaryrefslogtreecommitdiff
path: root/parts/toklist.h
diff options
context:
space:
mode:
authorkartofen <kartofen.mail.0@protonmail.com>2025-07-08 00:21:07 +0300
committerkartofen <kartofen.mail.0@protonmail.com>2025-07-08 00:21:07 +0300
commit1946d7ada4924c88e8657f055edf9210cf0c6f2a (patch)
tree983528d33ed57e3ebc7792971507e6f9fff383ff /parts/toklist.h
parent364d124b961f2334fd9d2d380163f17c6575c26e (diff)
genearate parser options and lexer and dect separation
Diffstat (limited to 'parts/toklist.h')
-rw-r--r--parts/toklist.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/parts/toklist.h b/parts/toklist.h
index a6fe68d..f32cd25 100644
--- a/parts/toklist.h
+++ b/parts/toklist.h
@@ -3,7 +3,12 @@
#include "symbol.h"
-/*extern*/ symbol toklist_eat();
-/*extern*/ symbol toklist_peek();
+struct token;
+
+// /*extern*/ struct token *toklist_eat();
+// /*extern*/ struct token *toklist_peek();
+
+symbol toklist_eat();
+symbol toklist_peek();
#endif