ft_tablen.c 1.0 KB

12345678910111213141516171819202122232425
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* ft_tablen.c :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2016/11/01 18:35:45 by bchanot #+# #+# */
  9. /* Updated: 2018/10/12 19:37:03 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #include "libft.h"
  13. size_t ft_tablen(char **tab)
  14. {
  15. size_t cpt;
  16. cpt = 0;
  17. if (!tab)
  18. return (0);
  19. while (tab[cpt])
  20. cpt++;
  21. return (cpt);
  22. }