data_structures
hashset_utils.h
Go to the documentation of this file.
1 /* ************************************************************************** */
3 /* */
4 /* ::: :::::::: */
5 /* hashset_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:36:53 by unite ### ########.fr */
11 /* */
12 /* ************************************************************************** */
13 
14 #ifndef HASHSET_UTILS
15 
16 # define HASHSET_UTILS
17 
18 # include "hashset.h"
19 
20 void hashset_grow(t_hashset *hs);
21 void hashset_shrink(t_hashset *hs);
22 
23 #endif
hashset.h
s_hashset
A dynamically resizing linear-probing hashset.
Definition: hashset.h:43