From aeced5737c8b8d87a794bbb9775dd2145c43cabc Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Wed, 8 Jul 2020 11:31:38 -0400 Subject: Add check key ptr for map to ease memory management of keys --- collections/map/map.h | 1 + 1 file changed, 1 insertion(+) (limited to 'collections/map/map.h') 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*); -- cgit v1.1