24 lines
1.1 KiB
C
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++);
|
|
}
|