aboutsummaryrefslogtreecommitdiff
path: root/parts/toklist.h
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2025-07-08 00:21:07 +0300
committerkartofen <mladenovnasko0@gmail.com>2025-07-08 00:21:07 +0300
commit919611902c39fd70afe1162883ee6bfd34f2642e (patch)
tree983528d33ed57e3ebc7792971507e6f9fff383ff /parts/toklist.h
parenta6cb97af1a2a5491f54fcfa7064641dc0aafd898 (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