-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncmp.c
32 lines (29 loc) · 1.35 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
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yuske <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/24 16:18:24 by yfurutat #+# #+# */
/* Updated: 2022/11/23 11:18:11 by yuske ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
//10L
//memcmpと違い、'\0'でストップ。
//n==0->whileループに入らない
//str1,2==NULL->while->if
//文字配列が終端文字に当たるか、1と2で異なるところに当たったらループが止まる。
int ft_strncmp(const char *str1, const char *str2, size_t n)
{
size_t i;
i = 0;
while (i < n)
{
if (!str1[i] || !str2[i] || str1[i] != str2[i])
return ((unsigned char)str1[i] - (unsigned char)str2[i]);
i++;
}
return (0);
}