-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_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: tpouget <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/05/14 17:04:37 by tpouget #+# #+# */
/* Updated: 2020/05/14 17:06:12 by tpouget ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
char *ft_strchr(const char *s, int c)
{
unsigned char value;
char *ptr;
value = (unsigned char)c;
ptr = (char *)s;
while (*ptr)
{
if (*ptr == value)
return (ptr);
ptr++;
}
if (!c)
return (ptr);
else
return (NULL);
}