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

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

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