-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_lstdelone_bonus.c
More file actions
21 lines (19 loc) · 1023 Bytes
/
ft_lstdelone_bonus.c
File metadata and controls
21 lines (19 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aabduvak <abdulaziz.yosk@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/07 00:39:22 by aabduvak #+# #+# */
/* Updated: 2022/01/07 00:39:22 by aabduvak ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdelone(t_list *lst, void (*del) (void *))
{
if (!lst)
return ;
del(lst->content);
free(lst);
}