symtable: sym_table_cleanup -> sym_table_free

This commit is contained in:
2026-02-05 05:39:22 +00:00
parent 66770f22d9
commit 34d3417e74
4 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ void symtable_test(void)
TEST(table.count == ARRSIZE(unique_words), "%lu == %lu", table.count,
ARRSIZE(unique_words));
sym_table_cleanup(&table);
sym_table_free(&table);
TEST_PASSED();
}