/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tablen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/01 18:35:45 by bchanot #+# #+# */ /* Updated: 2016/11/01 18:37:07 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_tablen(char **tab) { int cpt; cpt = 0; while (tab[cpt]) cpt++; return (cpt); }