-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_strncmp.c
More file actions
36 lines (32 loc) · 1.29 KB
/
ft_strncmp.c
File metadata and controls
36 lines (32 loc) · 1.29 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: muganiev <gf.black.tv@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/16 14:40:43 by muganiev #+# #+# */
/* Updated: 2022/05/23 20:50:50 by muganiev ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
static int compare_char(char c1, char c2)
{
if ((unsigned char)c1 != (unsigned char)c2)
return ((unsigned char)c1 - (unsigned char)c2);
return (0);
}
int ft_strncmp(const char *s1, const char *s2, size_t n)
{
size_t i;
i = 0;
while (s1[i] && s2[i] && i < n)
{
if (compare_char(s1[i], s2[i]))
return (s1[i] - s2[i]);
i++;
}
if (i < n)
return (compare_char(s1[i], s2[i]));
return (0);
}