Libft
Custom implementation of core libc functions with additional utility helpers.
Loading...
Searching...
No Matches
init.c File Reference
#include <libft.h>
#include "buckets.h"
#include "priv_hashmap.h"
Include dependency graph for init.c:

Functions

bool hashmap_init (t_hashmap *map, size_t initial_cap, void(*del)(void *))
 Initializes an empty hash map.
 
void hashmap_free (t_hashmap *map)
 Frees a hash map and all of its contents.
 
void hashmap_clear (t_hashmap *map)
 Removes all key/value pairs from a hash map.