-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstdelone.c
20 lines (18 loc) · 1007 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: ariahi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/25 00:24:09 by ariahi #+# #+# */
/* Updated: 2022/09/17 19:01:15 by ariahi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdelone(t_list *lst, t_delfn fn)
{
if (lst && fn)
fn(lst->content);
free(lst);
}