-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstclear.c
29 lines (26 loc) · 1.13 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstclear.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ibeliaie <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/05/19 12:15:38 by ibeliaie #+# #+# */
/* Updated: 2023/05/20 12:14:53 by ibeliaie ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/* delete and free given node and every successor */
void ft_lstclear(t_list **lst, void (*del)(void *))
{
t_list *ptr;
t_list *temp;
ptr = *lst;
while (ptr)
{
temp = ptr->next;
ft_lstdelone(ptr, del);
ptr = temp;
}
*lst = NULL;
}