-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstdelone_bonus.c
26 lines (23 loc) · 1.07 KB
/
ft_lstdelone_bonus.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abertran <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/10 18:51:22 by abertran #+# #+# */
/* Updated: 2022/10/18 18:26:31 by abertran ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/* toma un elemento y libera la memoria y el elemento */
void ft_lstdelone(t_list *lst, void (*del)(void*))
{
if (!lst)
return ;
if (del)
{
del(lst->content);
free(lst);
}
}