libft/ft_strtabclr.c
Tanguy MAZE 99ce0ff956 WIP adding functions to control word tables
added functions to create, clear, delete & copy word tables
2018-11-23 16:38:36 +01:00

26 lines
1016 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtabclr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/23 14:49:25 by tmaze #+# #+# */
/* Updated: 2018/11/23 14:52:43 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strtabclr(char **tab)
{
size_t i;
i = 0;
while (tab[i])
{
ft_strdel(tab[i]);
i++;
}
}