-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strncmp.c
27 lines (24 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ansebast <ansebast@student.42luanda.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/29 11:31:55 by ansebast #+# #+# */
/* Updated: 2024/08/14 19:05:17 by ansebast ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_strncmp(const char *str1, const char *str2, size_t num)
{
size_t i;
i = 0;
while (i < num)
{
if (str1[i] != str2[i] || !str1[i] || !str2[i])
return ((unsigned char)str1[i] - (unsigned char)str2[i]);
i++;
}
return (0);
}