summaryrefslogtreecommitdiff
path: root/archive/src/std/containers/hashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'archive/src/std/containers/hashmap.h')
-rw-r--r--archive/src/std/containers/hashmap.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/archive/src/std/containers/hashmap.h b/archive/src/std/containers/hashmap.h
new file mode 100644
index 0000000..95c1c6b
--- /dev/null
+++ b/archive/src/std/containers/hashmap.h
@@ -0,0 +1,27 @@
+/**
+ * @file hashmap.h
+ * @author your name (you@domain.com)
+ * @brief
+ * @version 0.1
+ * @date 2024-04-27
+ *
+ * @copyright Copyright (c) 2024
+ *
+ */
+
+typedef struct hashmap hashmap;
+
+/*
+Example usage
+-------------
+init hashmap
+insert (string, material)
+get (string) -> material_opt or material* ?
+
+*/
+
+void hashmap_init(hashmap* map);
+
+// ...
+
+void hashmap_free(hashmap* map); \ No newline at end of file