aboutsummaryrefslogtreecommitdiff
path: root/collections/map/map.h
diff options
context:
space:
mode:
authorTucker Evans <tucker@tuckerevans.com>2020-07-08 11:31:38 -0400
committerTucker Evans <tucker@tuckerevans.com>2020-07-08 11:31:38 -0400
commitaeced5737c8b8d87a794bbb9775dd2145c43cabc (patch)
tree93821c8a4550ac449c6fa0591278b3f4f2986b1e /collections/map/map.h
parent7ef7147d743b1ca1edb6d40b820c79b7527ab941 (diff)
Add check key ptr for map to ease memory management of keys
Diffstat (limited to 'collections/map/map.h')
-rw-r--r--collections/map/map.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/collections/map/map.h b/collections/map/map.h
index 9de3ba1..38e3e11 100644
--- a/collections/map/map.h
+++ b/collections/map/map.h
@@ -14,6 +14,7 @@ int map_size(map*);
int map_insert(map*, void*, void*);
void* map_index(map*, void*);
+int map_check_key_ptr(map*, void*);
void* map_set_key(map*, void*);