-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strchr.c
32 lines (29 loc) · 1.1 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
27
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abassibe <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/20 23:38:21 by abassibe #+# #+# */
/* Updated: 2018/03/14 01:42:13 by abassibe ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchr(const char *s, int c)
{
int p;
char *d;
p = 0;
d = (char*)s;
while (d[p] != '\0')
{
if (d[p] == (char)c)
return (&d[p]);
p++;
}
if (c == '\0')
return (&d[p]);
else
return (NULL);
}