-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstdelone.c
21 lines (19 loc) · 1.05 KB
/
ft_lstdelone.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thakala <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/20 19:44:54 by thakala #+# #+# */
/* Updated: 2021/11/29 21:52:18 by thakala ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdlib.h>
void ft_lstdelone(t_list **alst, void (*del)(void *c, size_t s))
{
del((*alst)->content, (*alst)->content_size);
free(*alst);
*alst = NULL;
}