42_C_PISCINE/C/c04/ex00/ft_strlen.c
Camille Chauvet 29ed24d567 init
2023-05-17 16:45:25 +00:00

32 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlen.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/19 15:05:40 by cchauvet #+# #+# */
/* Updated: 2022/07/19 15:05:42 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
int ft_strlen(char *str)
{
int i;
i = 0;
while (str[i] != 0)
i++;
return (i);
}
/*
#include <stdio.h>
int main()
{
printf("%d", ft_strlen("123456789"));
printf("%d", ft_strlen(""));
}
*/