-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strchr.c
32 lines (29 loc) · 1.13 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abertran <abertran@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/26 15:01:23 by abertran #+# #+# */
/* Updated: 2022/10/06 17:50:54 by abertran ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchr(const char *s, int c)
{
if (c > 256)
c %= 256;
while (*s != '\0' && c != *s)
s++;
if (c == *s)
return ((char *)s);
return (0);
}
/*
int main(void)
{
const char s[] = "si o no";
printf("%s", ft_strchr(s, 105));
}
*/