diff options
author | kartofen <mladenovnasko0@gmail.com> | 2025-07-06 21:18:28 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2025-07-06 21:18:28 +0300 |
commit | b4261ac4a79651bd8fd1bd03d38bbf49ee89b615 (patch) | |
tree | 3b86e7afe5d16899d691122c3271944dc41d324e /parts/table.h | |
parent | b65dd53885eabb8f39a3115039563edc08efb2b4 (diff) |
modular table building
Diffstat (limited to 'parts/table.h')
-rw-r--r-- | parts/table.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/parts/table.h b/parts/table.h index 44d1e12..486466f 100644 --- a/parts/table.h +++ b/parts/table.h @@ -12,8 +12,9 @@ extern struct action { extern size_t table_states; -/*extern*/ int table_fill(); -/*extern*/ void table_free(); +extern int (*table_fill)(); +extern void (*table_free)(); + void table_print(); void table_print_cstyle(); |