42-archive/42-piscine-c/d09/ex06/ft_destroy.c
2016-08-25 20:50:28 +02:00

24 lines
1.1 KiB
C

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