-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strchr.c
24 lines (22 loc) · 1.05 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: muraler <muraler@student.42.tr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/10 16:51:01 by muraler #+# #+# */
/* Updated: 2022/02/22 14:32:33 by muraler ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchr(const char *s, int c)
{
if (c >= 127)
return ((char *)s);
while (*s != '\0' && c != *s)
s++;
if (c == *s)
return ((char *)s);
return (0);
}