-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdel.c
20 lines (18 loc) · 988 Bytes
/
ft_strdel.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ggladkov <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/04/20 19:17:24 by ggladkov #+# #+# */
/* Updated: 2017/04/23 03:43:48 by ggladkov ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strdel(char **as)
{
if (!as)
return ;
ft_memdel((void **)as);
}