/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstdelone.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mcolonna +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/10/04 16:28:18 by mcolonna #+# #+# */ /* Updated: 2023/10/05 12:55:39 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "libft.h" void ft_lstdelone(t_list *lst, void (*del)(void *)) { if (!lst) return ; (*del)(lst->content); free(lst); }