-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstdel.c
23 lines (21 loc) · 1.08 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rymuller <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/28 13:20:46 by rymuller #+# #+# */
/* Updated: 2018/11/29 20:38:41 by rymuller ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdel(t_list **alst, void (*del)(void *, size_t))
{
if (alst != NULL || del != NULL)
{
if ((*alst)->next != NULL)
ft_lstdel(&(*alst)->next, del);
ft_lstdelone(alst, del);
}
}