blob: 99e7a00814485a25e13a5c907823c170f8b47739 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libft_util.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/27 17:51:36 by cacharle #+# #+# */
/* Updated: 2020/05/10 21:02:02 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFT_UTIL_H
# define LIBFT_UTIL_H
# include <stdlib.h>
# include <stddef.h>
void *ft_split_destroy(char **strs);
size_t ft_split_len(char **split);
#endif
|