-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstdel.c
executable file
·22 lines (20 loc) · 1.04 KB
/
ft_lstdel.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mberger <mberger@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/13 13:25:25 by mberger #+# #+# */
/* Updated: 2014/12/23 21:15:14 by mberger ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdel(t_list **alst, void (*del)(void *, size_t))
{
if ((del) && (*alst))
{
ft_lstdel(&((*alst)->next), del);
ft_lstdelone(alst, del);
}
}