-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memchr.c
24 lines (22 loc) · 1.06 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lmartine <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/02/26 20:39:52 by lmartine #+# #+# */
/* Updated: 2018/03/06 23:21:20 by lmartine ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memchr(const void *s, int c, size_t n)
{
while (n-- > 0)
{
if (*((unsigned char*)s) == (unsigned char)c)
return ((unsigned char*)s);
s++;
}
return (NULL);
}