From f9c6035f032b00584708efeffda40a6ceec8a383 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Wed, 8 Jul 2020 11:18:50 -0400 Subject: Fix rename map_reset_key to map_set_key --- 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 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*); -- cgit v1.1