blob: bc3f4e654533823ef7720d62808a0441f5c23289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_split_destroy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/27 16:30:55 by cacharle #+# #+# */
/* Updated: 2020/02/27 17:52:31 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft_util.h"
void *ft_split_destroy(char **strs)
{
int i;
i = -1;
while (strs[++i] != NULL)
free(strs[i]);
free(strs);
return (NULL);
}
|