data_structures
array_utils.h
Go to the documentation of this file.
1 /* ************************************************************************** */
3 /* */
4 /* ::: :::::::: */
5 /* array_utils.h :+: :+: :+: */
6 /* +:+ +:+ +:+ */
7 /* By: unite <marvin@42.fr> +#+ +:+ +#+ */
8 /* +#+#+#+#+#+ +#+ */
9 /* Created: 2020/07/18 23:26:34 by unite #+# #+# */
10 /* Updated: 2020/09/07 20:03:05 by unite ### ########.fr */
11 /* */
12 /* ************************************************************************** */
13 
14 #include "array.h"
15 
16 #ifndef ARRAY_UTILS_H
17 
18 # define ARRAY_UTILS_H
19 
20 void array_grow(t_array *array);
21 void array_shrink(t_array *array);
22 
23 #endif
array.h
s_array
A resizable array.
Definition: array.h:47