/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvobis +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/02 16:01:03 by vvobis #+# #+# */ /* Updated: 2024/04/12 10:40:59 by vvobis ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" size_t ft_strlen(char const *str) { size_t i; i = 0; while (*str++) { i++; if (i == SIZE_MAX) break ; } return (i); }