-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memchr.c
31 lines (28 loc) · 1.13 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: ysoroko <ysoroko@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/17 09:38:25 by ysoroko #+# #+# */
/* Updated: 2020/11/30 18:36:37 by ysoroko ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memchr(const void *str, int c, size_t n)
{
size_t i;
unsigned char *my_str;
i = 0;
my_str = (unsigned char *)(str);
while (i < n)
{
if (my_str[i] == (unsigned char)(c))
{
return (&my_str[i]);
}
i++;
}
return (0);
}