From cb80c9dcad5f5def30d62995e38ee8894d8909de Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Tue, 21 Jul 2020 15:57:37 -0400 Subject: Add remove to header and documentation for maps --- collections/map/map.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'collections/map/map.h') diff --git a/collections/map/map.h b/collections/map/map.h index f67b559..81718c1 100644 --- a/collections/map/map.h +++ b/collections/map/map.h @@ -12,8 +12,10 @@ int map_size(map*); /*data*/ int map_insert(map*, void*, void*); -void* map_index(map*, void*); +void* map_remove(map*, void*); + void* map_set_val(map*, void*, void*); +void* map_index(map*, void*); int map_check_key_ptr(map*, void*); void* map_set_key(map*, void*); -- cgit v1.1