-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstdel.c
22 lines (20 loc) · 1.05 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: bsiguret <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/09 07:48:32 by bsiguret #+# #+# */
/* Updated: 2017/11/09 07:53:50 by bsiguret ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdel(t_list **alst, void (*del)(void *, size_t))
{
if (*alst != NULL && del != NULL)
{
ft_lstdel(&((*alst)->next), del);
ft_lstdelone(alst, del);
}
}