-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstdelone.c
20 lines (18 loc) · 1009 Bytes
/
ft_lstdelone.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aymoulou <aymoulou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/13 09:10:10 by aymoulou #+# #+# */
/* Updated: 2021/11/10 22:30:44 by aymoulou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdelone(t_list *lst, void (*del)(void*))
{
del(lst->content);
free(lst);
lst = 0;
}