-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memchr.c
30 lines (27 loc) · 1.19 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
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_memchr.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: thperchi <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/07/10 04:59:07 by thperchi #+# ## ## #+# */
/* Updated: 2018/10/12 05:11:15 by thperchi ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
void *ft_memchr(const void *s, int c, size_t n)
{
unsigned char *s2;
unsigned int x;
s2 = (unsigned char *)s;
x = 0;
while (x < n)
{
if (s2[x] == (unsigned char)c)
return ((void *)s + x);
x++;
}
return (NULL);
}