-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstclear.c
30 lines (28 loc) · 1.3 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstclear.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mhiguera <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/19 18:01:36 by mhiguera #+# #+# */
/* Updated: 2023/03/19 19:42:24 by mhiguera ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstclear(t_list **lst, void (*del)(void*))
{
if ((!del) || (!lst))
return ;
while (*lst != '\0')
{
ft_lstdelone(*lst, del);
*lst = (*lst)->next;
}
(*lst) = NULL;
}
/*
* Primero compruebo los valores que me pasan, y luego mientras la lista no se
* acabe, que vaya liberando cada nodo. Para pasar al siguiente nodo me situaré
* en la posición de next. Al final el puntero de la lista debe ser NULL.
*/