mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 09:34:16 +00:00
12 lines
118 B
C
12 lines
118 B
C
#include "libft.h"
|
|
|
|
size_t ft_strlen(const char *s)
|
|
{
|
|
size_t i;
|
|
|
|
i = 0;
|
|
while (s[i] != '\0')
|
|
i++;
|
|
return (i);
|
|
}
|