data_structures
hashmap_utils.h
Go to the documentation of this file.
1 /* ************************************************************************** */
3 /* */
4 /* ::: :::::::: */
5 /* hashmap_utils.h :+: :+: :+: */
6 /* +:+ +:+ +:+ */
7 /* By: unite <marvin@42.fr> +#+ +:+ +#+ */
8 /* +#+#+#+#+#+ +#+ */
9 /* Created: 2020/07/21 19:16:21 by unite #+# #+# */
10 /* Updated: 2020/09/07 22:35:42 by unite ### ########.fr */
11 /* */
12 /* ************************************************************************** */
13 
14 #ifndef HASHMAP_UTILS
15 
16 # define HASHMAP_UTILS
17 
18 # include "hashmap.h"
19 
20 void hashmap_grow(t_hashmap *hm);
21 void hashmap_shrink(t_hashmap *hm);
22 
23 #endif
hashmap.h
s_hashmap
A symbol table of generic key-value pairs, implemented as a dynamically resizing linear-probing hashm...
Definition: hashmap.h:48