-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstdelone.c
21 lines (19 loc) · 1023 Bytes
/
ft_lstdelone.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: earnaud <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/16 11:01:00 by earnaud #+# #+# */
/* Updated: 2020/11/16 12:30:28 by earnaud ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdelone(t_list *lst, void (*del)(void*))
{
if (!(lst))
return ;
del(lst->content);
free(lst);
}