-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_dlstdelone.c
25 lines (22 loc) · 1.14 KB
/
ft_dlstdelone.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_dlstdelone.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kakiba <kotto555555@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/10 15:18:43 by kakiba #+# #+# */
/* Updated: 2022/12/13 14:04:41 by kakiba ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
//del が無ければlst をフリーするだけ
//del が無い=構造体はスタック領域のもの
void ft_dlstdelone(t_dlist *lst, void (*del)(void *))
{
if (lst == NULL)
return ;
if (del != NULL)
del(&lst -> content);
free(lst);
}