diff options
| author | kartofen <kartofen.mail.0@protonmail.com> | 2025-07-08 00:21:07 +0300 |
|---|---|---|
| committer | kartofen <kartofen.mail.0@protonmail.com> | 2025-07-08 00:21:07 +0300 |
| commit | 1946d7ada4924c88e8657f055edf9210cf0c6f2a (patch) | |
| tree | 983528d33ed57e3ebc7792971507e6f9fff383ff /parts/toklist.h | |
| parent | 364d124b961f2334fd9d2d380163f17c6575c26e (diff) | |
genearate parser options and lexer and dect separation
Diffstat (limited to 'parts/toklist.h')
| -rw-r--r-- | parts/toklist.h | 9 |
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 |
