Begin working on a table struct to hold information during runtime.
This commit is contained in:
11
src/table.c
Normal file
11
src/table.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "table.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
void table_init(table* table) {
|
||||
ht_init(&table->table);
|
||||
table->parent = NULL;
|
||||
}
|
||||
|
||||
void table_free(table* table) {
|
||||
ht_free(&table->table);
|
||||
}
|
||||
Reference in New Issue
Block a user