From 919611902c39fd70afe1162883ee6bfd34f2642e Mon Sep 17 00:00:00 2001 From: kartofen Date: Tue, 8 Jul 2025 00:21:07 +0300 Subject: genearate parser options and lexer and dect separation --- parts/toklist.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'parts') 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 -- cgit v1.2.3