-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strchr.c
31 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
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmita <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/09 16:32:14 by mmita #+# #+# */
/* Updated: 2022/11/13 15:26:06 by mmita ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <string.h>
char *ft_strchr(const char *s, int c)
{
int i;
i = 0;
while (s[i] != '\0')
{
if (s[i] == (char)c)
return ((char *)(s + i));
i++;
}
if ((char)c == '\0')
return ((char *)(s + i));
else
return (NULL);
}