aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--table.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/table.h b/table.h
new file mode 100644
index 0000000..af37c7e
--- /dev/null
+++ b/table.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "types.h"
+
+struct table_index {
+ struct string name;
+ void *ptr;
+};
+
+struct table {
+ struct table_index *array;
+ size_t len;
+};
+
+extern int set_table_index(struct table *tbl, struct string name, void *ptr);
+extern void * get_table_index(struct table tbl, struct string name);
+extern void * remove_table_index(struct table *tbl, struct string name); // returns same as get_table_index