-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memcmp.c
31 lines (28 loc) · 1.17 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: llatrice <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/14 19:23:25 by llatrice #+# #+# */
/* Updated: 2021/10/25 20:17:46 by llatrice ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_memcmp(const void *str1, const void *str2, size_t n)
{
unsigned const char *m1;
unsigned const char *m2;
m1 = (unsigned const char *)str1;
m2 = (unsigned const char *)str2;
while (n > 0)
{
if (*m1 != *m2)
return (*m1 - *m2);
m1++;
m2++;
n--;
}
return (0);
}