| 1234567891011121314151617181920212223 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_tablen.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* 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);
- }
|