-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strcmp.c
28 lines (25 loc) · 1.13 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
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nhennigh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/11 20:07:07 by nhennigh #+# #+# */
/* Updated: 2019/02/14 20:22:30 by nhennigh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_strcmp(const char *s1, const char *s2)
{
unsigned char *str1;
unsigned char *str2;
str1 = (unsigned char *)s1;
str2 = (unsigned char *)s2;
while ((*str1 == *str2) && *str1 && *str2)
{
str1++;
str2++;
}
return (*str1 - *str2);
}