aboutsummaryrefslogtreecommitdiff
path: root/collections/map/map.h
diff options
context:
space:
mode:
authorTucker Evans <tucker@tuckerevans.com>2020-07-08 11:18:50 -0400
committerTucker Evans <tucker@tuckerevans.com>2020-07-08 11:18:50 -0400
commitf9c6035f032b00584708efeffda40a6ceec8a383 (patch)
treebfd29b3bad843c9deb8f2cdec17311adf0d28594 /collections/map/map.h
parent78fa3e40d3c2f0d302f4779ca35352f5f68fba0b (diff)
Fix rename map_reset_key to map_set_key
Diffstat (limited to 'collections/map/map.h')
-rw-r--r--collections/map/map.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/collections/map/map.h b/collections/map/map.h
index d1a0012..9de3ba1 100644
--- a/collections/map/map.h
+++ b/collections/map/map.h
@@ -12,9 +12,11 @@ int map_size(map*);
/*data*/
int map_insert(map*, void*, void*);
-void* map_reset_key(map*, void*);
void* map_index(map*, void*);
+void* map_set_key(map*, void*);
+
+
/*memory*/
void map_clear(map*);
void map_free(map*);