Archived
1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
pipex/src/utils/ft_freetab.c
2024-03-28 23:05:43 +01:00

26 lines
1013 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_freetab.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/28 22:34:09 by adjoly #+# #+# */
/* Updated: 2024/03/28 22:36:50 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
void ft_freearr(char **arr)
{
char **tmp;
tmp = arr;
while(*tmp)
{
free(*tmp);
tmp++;
}
}