-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_memcmp.c
32 lines (29 loc) · 1.15 KB
/
ft_memcmp.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vbrazas <vbrazas@student.unit.ua> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/10/30 20:03:12 by vbrazas #+# #+# */
/* Updated: 2017/11/19 14:54:19 by vbrazas ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_memcmp(const void *s1, const void *s2, size_t n)
{
unsigned char *a;
unsigned char *b;
size_t i;
a = (unsigned char *)s1;
b = (unsigned char *)s2;
i = 0;
while (i < n)
{
if (a[i] == b[i])
i++;
else
return (a[i] - b[i]);
}
return (0);
}