aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_free_words.c
blob: 32317911f1c8674f0d9a4dd0017d9bb50df6121e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <libft.h>

void
ft_free_words(char **words)
{
	size_t	i;

	i = 0;
	while (words[i])
	{
		ft_memdel(words[i]);
		i++;
	}
	ft_memdel(words);
}