aboutsummaryrefslogtreecommitdiff
path: root/collections/map/map.h
diff options
context:
space:
mode:
authorTucker Evans <tucker@tuckerevans.com>2020-07-06 15:36:34 -0400
committerTucker Evans <tucker@tuckerevans.com>2020-07-08 10:56:29 -0400
commitf652c23fbc61dec9db48c6e745edca5a12b655bb (patch)
tree55041979d41e9a1f2b501d2db2fa22cb58b0c7fc /collections/map/map.h
parent7f96fdd283c7e6ce7245585d75795a69871e0635 (diff)
Add structs/typedefs for maps
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