/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strdel.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/25 18:14:35 by bchanot #+# #+# */ /* Updated: 2015/12/07 18:27:05 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_strdel(char **as) { if (as != NULL && *as != NULL) ft_memdel((void *)as); }