-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strchr.c
24 lines (22 loc) · 1.07 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: ademenet <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/25 08:59:57 by ademenet #+# #+# */
/* Updated: 2016/02/02 18:47:34 by ademenet ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchr(const char *s, int c)
{
while (*s && *s != (char)c)
s++;
if (*s == (char)c)
return ((char *)s);
if (!c && *s == '\0')
return ((char *)s);
return (NULL);
}