-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstdel.c
27 lines (24 loc) · 1.1 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
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ylagtab <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/06 13:27:42 by ylagtab #+# #+# */
/* Updated: 2020/02/27 22:26:43 by ylagtab ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdel(t_list **alst, void (*del)(void *, size_t))
{
t_list *tmp;
if (alst == NULL || *alst == NULL)
return ;
while (*alst)
{
tmp = *alst;
*alst = (*alst)->next;
ft_lstdelone(&tmp, del);
}
}