diff options
author | kartofen <mladenovnasko0@gmail.com> | 2025-07-02 22:55:08 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2025-07-02 22:55:08 +0300 |
commit | 5064a7ebce75a26d0405c92040f1a40187fcc7e3 (patch) | |
tree | 7a41182cf329e77ebb760969e3f220f60079c187 /parts/table.h | |
parent | a67266ff72280b85fed7ec498967a855a5735639 (diff) |
turn clr into lalr and first steps for generating a parser
Diffstat (limited to 'parts/table.h')
-rw-r--r-- | parts/table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parts/table.h b/parts/table.h index 3b54312..23c61dc 100644 --- a/parts/table.h +++ b/parts/table.h @@ -8,7 +8,7 @@ extern struct action { ACTION_ACCEPT } type; size_t arg; -} *table[]; +} **table; extern size_t table_states; |