-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memchr.c
31 lines (28 loc) · 1.12 KB
/
ft_memchr.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_memchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pboucher <pboucher@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/08 14:10:24 by pboucher #+# #+# */
/* Updated: 2024/10/11 18:37:40 by pboucher ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memchr(const void *s, int c, size_t n)
{
unsigned char *str;
unsigned char ca;
size_t i;
ca = c;
str = (unsigned char *)s;
i = 0;
while (i < n)
{
if (str[i] == ca)
return (&str[i]);
i++;
}
return (0);
}