blob: 59a99bdcc06b761273c01e83b37d0f2528dec7e1 (
plain)
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
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_memcmp.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/08 19:23:43 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 08:40:10 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <stddef.h>
int
ft_memcmp(const void *s1, const void *s2, size_t n)
{
const unsigned char *s1_ptr;
const unsigned char *s2_ptr;
s1_ptr = (unsigned char*)s1;
s2_ptr = (unsigned char*)s2;
if (!s1 || !s2)
return (0);
while (n)
{
if (*s1_ptr != *s2_ptr)
return (*s1_ptr - *s2_ptr);
s1_ptr++;
s2_ptr++;
n--;
}
return (0);
}
|