/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* libft_util.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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 # include void *ft_split_destroy(char **strs); size_t ft_split_len(char **split); #endif