/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstdelone.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tomoron +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/01 15:56:36 by tomoron #+# #+# */ /* Updated: 2023/11/02 01:13:47 by tomoron ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_lstdelone(t_list *lst, void (*del)(void*)) { if (!lst || !del) return ; del(lst->content); free(lst); }