-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strchr.c
24 lines (23 loc) · 1.04 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ulyildiz <ulyildiz@student.42kocaeli.co +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/10 18:49:16 by ulyildiz #+# #+# */
/* Updated: 2023/10/25 01:44:29 by ulyildiz ### ########.fr */
/* */
/* ************************************************************************** */
char *ft_strchr(const char *s, int c)
{
while (*s != '\0')
{
if (*s == (char)c)
return ((char *)s);
s++;
}
if ((char)c == '\0')
return ((char *)s);
return (0);
}