/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_puttab.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/12/23 15:12:41 by bchanot #+# #+# */ /* Updated: 2018/10/12 19:38:27 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_puttab(char **tab) { if (!tab) return ; while (*tab) { ft_putendl(*tab); tab++; } }