-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strchr.c
22 lines (20 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: malexand <malexand@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/09/14 22:18:00 by alex #+# #+# */
/* Updated: 2017/02/16 17:33:47 by malexand ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchr(const char *str, int c)
{
while (*str != c && *str != '\0')
str++;
if (*str == '\0' && c != '\0')
return (NULL);
return ((char*)str);
}