Begin working on a table struct to hold information during runtime.

This commit is contained in:
2018-02-10 17:53:07 -08:00
parent 3254f5741f
commit a27bdc37f5
3 changed files with 73 additions and 1 deletions

11
src/table.c Normal file
View 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);
}