libft/ft_strtabdel.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

19 lines
972 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtabdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/23 16:32:30 by tmaze #+# #+# */
/* Updated: 2018/11/23 16:35:27 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strtabdel(char ***tab)
{
ft_memdel((**void)tab);
}