/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/10/30 18:15:57 by adjoly #+# #+# */ /* Updated: 2023/11/20 15:51:51 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_printf.h" size_t ft_strlen(const char *s) { int i; i = 0; while (s[i]) i++; return (i); }