From f652c23fbc61dec9db48c6e745edca5a12b655bb Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Mon, 6 Jul 2020 15:36:34 -0400 Subject: Add structs/typedefs for maps --- collections/map/map.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 collections/map/map.h (limited to 'collections/map/map.h') 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 -- cgit v1.1