/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_destroy.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/12 16:13:51 by jhalford #+# #+# */ /* Updated: 2016/08/12 16:16:39 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "ft_ultimator.h" void ft_destroy(char ***factory) { while (**factory) free(**factory++); while (*factory) free(*factory++); while (factory) free(factory++); }