-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strcmp.c
27 lines (24 loc) · 1.15 KB
/
ft_strcmp.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_strcmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jecarol <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/22 20:06:54 by jecarol #+# #+# */
/* Updated: 2016/11/28 13:56:35 by jecarol ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_strcmp(const char *s1, const char *s2)
{
int i;
unsigned char *str1;
unsigned char *str2;
str1 = (unsigned char*)s1;
str2 = (unsigned char*)s2;
i = 0;
while ((str1[i] || str2[i]) && (str1[i] == str2[i]))
i++;
return (str1[i] - str2[i]);
}