21 lines
1.0 KiB
C
21 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lstdel.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2018/11/14 21:10:49 by hulamy #+# #+# */
|
|
/* Updated: 2018/11/16 13:59:10 by hulamy ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_lstdel(t_list **alst, void (*del)(void *, size_t))
|
|
{
|
|
if ((*alst)->next)
|
|
ft_lstdel(&(*alst)->next, del);
|
|
ft_lstdelone(alst, del);
|
|
}
|