/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_free_words.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2020/02/02 17:19:24 by rbousset #+# ## ## #+# */ /* Updated: 2020/02/02 17:19:24 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include uint8_t ft_free_words(char **words) { size_t i; i = 0; while (words[i]) { ft_memdel((void**)&words[i]); i++; } ft_memdel((void**)&words); return (0); }