woody-woodpacker/ft_printf/libft/ft_lstdelone.c

26 lines
1.0 KiB
C
Raw Permalink Normal View History

2024-02-14 08:58:04 +00:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pbonilla <eirodeis.lepnj@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/12/04 16:05:34 by pbonilla #+# #+# */
/* Updated: 2020/12/04 16:05:37 by pbonilla ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdelone(t_list *lst, void (*del)(void *))
{
if (!lst)
return ;
if (del)
{
del(lst->content);
2024-04-17 07:04:43 +00:00
free(lst);
2024-02-14 08:58:04 +00:00
}
}
2024-04-17 07:04:43 +00:00