aboutsummaryrefslogtreecommitdiff
path: root/collections/map/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'collections/map/map.h')
-rw-r--r--collections/map/map.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/collections/map/map.h b/collections/map/map.h
new file mode 100644
index 0000000..a760b45
--- /dev/null
+++ b/collections/map/map.h
@@ -0,0 +1,7 @@
+#ifndef MAP_H
+#define MAP_H
+
+typedef struct map_node map;
+typedef int (*cmp_func)(void*, void*);
+
+#endif