-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strlen.c
45 lines (39 loc) · 1.59 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlen.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dolvin17 <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/21 16:55:56 by ghuertas #+# #+# */
/* Updated: 2022/04/19 18:20:56 by dolvin17 ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/* calcula la longitud de un string */
//contar el tamaño de un buffer.
size_t ft_strlen(const char *s)
{
size_t i;
i = 0; //contador igual a cero.
while (s[i] != '\0') //mientras mi string en la posicion i sea distinto de 0.
i++; //aumento mi iterador.
return (i); //retorno lo que pude iterar hasta este punto.
}
/*
#include <stdio.h>
#include <string.h>
int main(void)
{
printf("%zu\n", ft_strlen("Clarkent"));
printf("%zu\n", ft_strlen("Hello"));
printf("%zu\n", ft_strlen("-1"));
printf("%zu\n", ft_strlen("Marvin"));
printf("\n");
printf("%zu\n", strlen("Clarkent"));
printf("%zu\n", strlen("Hello"));
printf("%zu\n", strlen("-1"));
printf("%zu\n", strlen("Marvin"));
return (0);
}
*/