|
Libft
Custom implementation of core libc functions with additional utility helpers.
|

Functions | |
| void * | hashmap_get (const t_hashmap *map, const char *key) |
| const void * | hashmap_get_const (const t_hashmap *map, const char *key) |
| Retrieves the value associated with a key. | |
| const t_key_value ** | hashmap_get_all (const t_hashmap *map) |
| Collects every key/value pair stored in the map. | |
| void * hashmap_get | ( | const t_hashmap * | map, |
| const char * | key | ||
| ) |

