-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strchr.c
39 lines (34 loc) · 1.51 KB
/
ft_strchr.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dolvin17 <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/21 21:30:56 by ghuertas #+# #+# */
/* Updated: 2022/04/14 21:19:46 by dolvin17 ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/* devuelve un puntero a la primera coincidencia de c en *s */
char *ft_strchr(const char *s, int __c)
{
char c;
c = __c; //igualo mis variable al valor de sus parametro de entrada.
while (*s != c) //mientras mi puntero no encuentre el char coincidente.
{
if (*s == '\0') //si encuentra un contrabarra cero.
return (0); //devuelvo cero.
s++; //continuo iterando. hasta dar con el.
}
return ((char *)s); // devuelvo un char puntero a la coincidencia.
}
/*
int main(void)
{
const char s[] = "karolisilla";
int c = 'o';
printf("ft_strchr: %s\n", ft_strchr(s, c));
printf("strchr: %s\n", strchr(s, c));
return (0);
}*/