symtable: refactor for SV changes and propagate

This commit is contained in:
2026-02-11 07:48:28 +00:00
committed by oreodave
parent 3e7734037c
commit b91e79933b
3 changed files with 7 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ typedef struct
#define SYM_TABLE_INIT_SIZE (1 << 10)
void sym_table_init(sym_table_t *);
char *sym_table_find(sym_table_t *, sv_t);
const char *sym_table_find(sym_table_t *, sv_t);
void sym_table_free(sym_table_t *);
#endif