-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_free_split.c
More file actions
26 lines (23 loc) · 1.01 KB
/
ft_free_split.c
File metadata and controls
26 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_free_split.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marcrodr < marcrodr@student.42sp.org.br +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/08 08:03:54 by marcrodr #+# #+# */
/* Updated: 2022/02/08 08:04:11 by marcrodr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_free_split(char **split)
{
int i;
i = 0;
while (split[i])
{
free(split[i]);
i++;
}
free(split);
}