-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstdel.c
24 lines (22 loc) · 1.08 KB
/
ft_lstdel.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mosborne <mosborne@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/10/06 15:01:22 by mosborne #+# #+# */
/* Updated: 2017/10/06 18:08:39 by mosborne ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdel(t_list **alst, void (*del)(void *, size_t))
{
while (*alst)
{
del((*alst)->content, (*alst)->content_size);
free(*alst);
(*alst) = (*alst)->next;
}
*alst = NULL;
}