diff options
Diffstat (limited to 'ft_strdel.c')
| -rw-r--r-- | ft_strdel.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/ft_strdel.c b/ft_strdel.c index 62debcc..d62d36d 100644 --- a/ft_strdel.c +++ b/ft_strdel.c @@ -1,6 +1,18 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_strdel.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/10/07 10:39:14 by cacharle #+# #+# */ +/* Updated: 2019/10/07 10:39:33 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include "libft.h" -void ft_strdel(char **as) +void ft_strdel(char **as) { - ft_memdel((void*)as); + ft_memdel((void*)as); } |
