/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strdel.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 10:31:16 by scebula #+# #+# */ /* Updated: 2015/12/04 00:56:41 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_strdel(char **as) { ft_memdel((void**)as); }