-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_strncmp.c
27 lines (24 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: psprawka <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/07/04 12:23:28 by psprawka #+# #+# */
/* Updated: 2018/06/17 13:41:27 by psprawka ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
int ft_strncmp(char *s1, char *s2, unsigned int n)
{
unsigned int i;
i = 0;
while ((s1[i] || s2[i]) && (i < n))
{
if ((s1[i] < s2[i]) || (s1[i] > s2[i]))
return (s1[i] - s2[i]);
i++;
}
return (0);
}