32 lines
1.1 KiB
C
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(""));
|
|
}
|
|
*/
|