-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdel.c
21 lines (19 loc) · 991 Bytes
/
ft_strdel.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maloua-h <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/12/26 16:38:17 by maloua-h #+# #+# */
/* Updated: 2019/01/18 19:39:54 by maloua-h ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strdel(char **s)
{
if (s == NULL)
return ;
free(*s);
*s = NULL;
}