-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstdelone.c
20 lines (18 loc) · 1011 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: mriant <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/06 14:11:28 by mriant #+# #+# */
/* Updated: 2021/12/06 14:20:17 by mriant ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdelone(t_list *lst, void (*del)(void *))
{
if (del)
del(lst->content);
free(lst);
}