/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_cntarg.c |o_o || | */ /* +:+ +:+ +:+ */ /* By: houtworm +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/02/07 00:38:26 by houtworm #+# #+# */ /* Updated: 2023/02/21 01:43:17 by houtworm \___)=(___/ */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_cntarg(char **argv) { int i; i = 0; while (argv[i]) i++; return (i); }