-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strlen.c
26 lines (24 loc) · 1.11 KB
/
ft_strlen.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlen.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jamendoe <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/02 18:37:37 by jamendoe #+# #+# */
/* Updated: 2022/11/02 18:37:39 by jamendoe ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlen(const char *s)
{
size_t i;
i = 0;
while (s[i] != '\0')
i++;
return (i);
}
/*
strlen - calculate the length of a string
The strlen() function returns the number of bytes in the string pointed to by s
*/