libft/ft_lst2del.c
2018-09-30 17:42:57 +02:00

21 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lst2del.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/09/30 17:32:37 by tmaze #+# #+# */
/* Updated: 2018/09/30 17:39:27 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lst2del(t_list2 **alst, void (*del)(void*, size_t))
{
if ((*alst)->next != NULL)
ft_lst2del(&((*alst)->next), del);
ft_lst2delone(alst, del);
}