-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstdelone_tstruct.c
22 lines (20 loc) · 1.04 KB
/
ft_lstdelone_tstruct.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone_tstruct.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rnowell <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/13 10:49:25 by rnowell #+# #+# */
/* Updated: 2016/11/13 10:49:27 by rnowell ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstdelone_tstruct(t_struct **alst)
{
ft_strdel(&((*alst)->s));
(*alst)->fdesc = 0;
(*alst)->index = NULL;
free(*alst);
*alst = NULL;
}