/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstclear_bonus.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/09 09:02:39 by cacharle #+# #+# */ /* Updated: 2019/10/09 13:30:09 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "libft_bonus.h" void ft_lstclear(t_list **lst, void (*del)(void *)) { t_list *tmp; while (*lst != NULL) { tmp = (*lst)->next; ft_lstdelone(*lst, del); *lst = tmp; } *lst = NULL; }