-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstdel.c
24 lines (22 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
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rnbou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/13 13:55:21 by rnbou #+# #+# */
/* Updated: 2018/10/14 11:27:54 by rnbou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdel(t_list **alst, void (*del)(void*, size_t))
{
if (*alst == NULL)
;
else
{
ft_lstdel(&((*alst)->next), del);
ft_lstdelone(alst, del);
}
}