aboutsummaryrefslogtreecommitdiff
path: root/collections/map/map.h
diff options
context:
space:
mode:
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*);