-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memchr.c
40 lines (36 loc) · 1.3 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
32
33
34
35
36
37
38
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gudaniel <gudaniel@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/09 13:56:48 by gudaniel #+# #+# */
/* Updated: 2024/04/09 13:56:53 by gudaniel ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memchr(const void *s, int c, size_t n)
{
unsigned int i;
const unsigned char *str;
str = (const unsigned char *)s;
i = 0;
while (i < n)
{
if (str[i] == (unsigned char)c)
return ((void *)&str[i]);
i++;
}
return (NULL);
}
/* int main()
{
char str[] = "Hello World";
char *ptr;
ptr = memchr(str, 'W', 7);
printf("%s\n", ptr);
ptr = ft_memchr(str, 'W', 7);
printf("%s\n", ptr);
return (0);
}*/