-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstclear.c
31 lines (28 loc) · 1.14 KB
/
ft_lstclear.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
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstclear.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: javellis <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/11 11:46:57 by javellis #+# #+# */
/* Updated: 2022/10/11 11:47:01 by javellis ### ########.fr */
/* */
/* ************************************************************************** */
#include"libft.h"
#include<stddef.h>
void ft_lstclear(t_list **lst, void (*del)(void *))
{
t_list *tmp;
t_list *next;
tmp = *lst;
next = tmp->next;
while (next)
{
ft_lstdelone(tmp, del);
tmp = next;
next = next->next;
}
ft_lstdelone(tmp, del);
*lst = NULL;
}