-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_strncmp.c
More file actions
37 lines (32 loc) · 1.24 KB
/
ft_strncmp.c
File metadata and controls
37 lines (32 loc) · 1.24 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: moabed <moabed@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/06/25 20:02:58 by moabed #+# #+# */
/* Updated: 2025/08/17 17:14:04 by moabed ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_strncmp(char *s1, char *s2, unsigned int n)
{
unsigned int i;
i = 0;
while (i < n)
{
if (s1[i] != s2[i])
return ((unsigned char)s1[i] - (unsigned char)s2[i]);
if (s1[i] == '\0')
return (0);
i++;
}
return (0);
}
// #include <stdio.h>
// int main(void)
// {
// int x = ft_strncmp("test\200", "test\0", 6);
// printf("%d",x);
// }