#include "libft.h" size_t ft_strlen(const char *s) { int i; i = 0; if (!s) return (0); while (s[i]) i++; return (i); }