/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tablen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/01 18:35:45 by bchanot #+# #+# */ /* Updated: 2018/10/12 19:37:03 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" size_t ft_tablen(char **tab) { size_t cpt; cpt = 0; if (!tab) return (0); while (tab[cpt]) cpt++; return (cpt); }