/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strdel.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 10:39:14 by cacharle #+# #+# */ /* Updated: 2019/11/20 01:58:27 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_strdel(char **as) { ft_memdel((void*)as); }