diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2020-07-24 15:56:43 -0400 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2020-07-24 15:56:43 -0400 |
commit | de41cfb61d4cbafdc3ffe8a2651630a53b3c8d11 (patch) | |
tree | 468869fa0550c2ce65ce1b1c02e66b7fd2701ec0 /collections/map/map.h | |
parent | bc540d32e8d2ff16ffe688b02f18d565651e4b10 (diff) |
Add first/last getters for maps.maps
Diffstat (limited to 'collections/map/map.h')
-rw-r--r-- | collections/map/map.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/collections/map/map.h b/collections/map/map.h index c6fb83d..b3ea4c5 100644 --- a/collections/map/map.h +++ b/collections/map/map.h @@ -14,6 +14,9 @@ int map_size(map*); int map_insert(map*, void*, void*); void* map_remove(map*, void*); +void* map_first(map*); +void* map_last(map*); + void* map_set_val(map*, void*, void*); void* map_index(map*, void*); |