-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncmp.c
28 lines (26 loc) · 1.13 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tbrebion <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/24 11:08:09 by tbrebion #+# #+# */
/* Updated: 2021/12/02 15:17:45 by tbrebion ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_strncmp(const char *s1, const char *s2, size_t n)
{
while (*s1 != '\0' && *s2 != '\0' && n > 0)
{
if (*s1 != *s2)
break ;
s1++;
s2++;
n--;
}
if (n == 0)
return (0);
return (*(unsigned char *)s1 - *(unsigned char *)s2);
}