-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strchr.c
26 lines (24 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
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mosborne <mosborne@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/09/19 16:33:27 by mosborne #+# #+# */
/* Updated: 2017/09/26 15:53:21 by mosborne ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchr(const char *str, int c)
{
while (*str)
{
if (*str == c)
return ((char *)str);
str++;
}
if (!c)
return ((char *)str);
return (0);
}