-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strchr.c
30 lines (28 loc) · 1.12 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fraqioui <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/05 14:38:56 by fraqioui #+# #+# */
/* Updated: 2022/10/19 09:41:27 by fraqioui ### ########.fr */
/* */
/* ************************************************************************** */
#include"libft.h"
char *ft_strchr(const char *s, int c)
{
size_t i;
size_t first;
char *str;
i = ft_strlen(s);
first = 0;
str = (char *)s;
while (first <= i)
{
if (str[first] == (char)c)
return (&str[first]);
first++;
}
return (0);
}