-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_memcmp.c
More file actions
46 lines (37 loc) · 1.5 KB
/
Copy pathft_memcmp.c
File metadata and controls
46 lines (37 loc) · 1.5 KB
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
36
37
38
39
40
41
42
43
44
45
46
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aantonie <aantonie@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/04 13:34:35 by aantonie #+# #+# */
/* Updated: 2023/11/04 13:49:04 by aantonie ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_memcmp(const void *s1, const void *s2, size_t n)
{
size_t i;
i = 0;
while (n--)
{
if (((unsigned char *)s1)[i] != ((unsigned char *)s2)[i])
return ((((unsigned char *)s1)[i]) - ((unsigned char *)s2)[i]);
i++;
}
return (0);
}
// #include <stdio.h>
// int main() {
// const char str[] = "Antoan";
// const char str1[] = "Antop";
// unsigned int len = 6;
// int result = ft_memcmp(str, str1, len);
// if (result == 0)
// printf("The 2 strings are identical: %d", result);
// else
// printf("The strings are not identical!\n");
// printf("The difference is: %d", result);
// return 0;
// }