42-archive/fillit/lib/libft/ft_strlen.c
Jack Halford 3d1bba5039 libft
2016-08-28 18:13:44 +02:00

11 lines
107 B
C

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