-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncmp.c
34 lines (31 loc) · 1.25 KB
/
ft_strncmp.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
33
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ldel-val <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/24 11:09:46 by ldel-val #+# #+# */
/* Updated: 2024/10/10 16:07:19 by ldel-val ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_strncmp(const char *s1, const char *s2, size_t n)
{
while (*s1 && *s1 == *s2 && n--)
{
s1++;
s2++;
}
if (n > 0)
return ((unsigned char)*s1 - (unsigned char)*s2);
return (0);
}
/*
int main(void)
{
char s1[] = "1234567890";
char s2[] = "1bcdefghij";
printf("ft: %d\n", ft_strncmp(s1, s2, 32));
printf("original: %d\n", strncmp(s1, s2, 32));
}*/