-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_strchr.c
More file actions
29 lines (26 loc) · 1.14 KB
/
ft_strchr.c
File metadata and controls
29 lines (26 loc) · 1.14 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: metaskin <metaskin@student.42istanbul.c +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/31 12:14:07 by metaskin #+# #+# */
/* Updated: 2026/01/19 14:56:34 by metaskin ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strchr(const char *s, int c)
{
unsigned char target_char;
target_char = (unsigned char)c;
while (*s)
{
if ((unsigned char)*s == target_char)
return ((char *)s);
s++;
}
if (target_char == '\0')
return ((char *)s);
return (0);
}