/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: sgongas +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/02/22 23:13:42 by sgongas #+# #+# */ /* Updated: 2026/02/22 23:15:58 by sgongas ### ########.fr */ /* */ /* ************************************************************************** */ int ft_strlen(char *str) { int i; i = 0; while (str[i]) i++; return (i); } // #include // int main(void) // { // printf("%d", ft_strlen("1234567890")); // return (0); // }