/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/19 04:52:42 by tischmid #+# #+# */ /* Updated: 2023/03/19 06:12:09 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ int ft_strlen(char *str) { int i; i = 0; while (str[i] != '\0') ++i; return (i); } /* //// #include int main(void) { printf("%d\n", ft_strlen("HELLO WORLD")); return (0); } */ ////