#include "libft.h" #include void ft_lstclear (t_list **lst, void (*del) (void *)) { t_list *cur; t_list *next; cur = *lst; while (cur) { next = cur->next; del (cur->content); free (cur); cur = next; } *lst = NULL; }