-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_strchr.c
32 lines (29 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
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yuotsuka <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/18 21:04:11 by yuotsuka #+# #+# */
/* Updated: 2024/04/25 21:27:12 by yuotsuka ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchr(const char *s, int c)
{
while (1)
{
if (*s == (char) c)
return ((char *)s);
if (!*s)
return (NULL);
s++;
}
}
// int main()
// {
// int c = 't';
// char *str = "";
// printf("%s", ft_strchr(str, c));
// }