-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strequ.c
executable file
·28 lines (25 loc) · 1.14 KB
/
ft_strequ.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_strequ.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aemebiku <aemebiku@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/06/26 15:40:51 by aemebiku #+# #+# */
/* Updated: 2014/06/26 15:40:52 by aemebiku ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.h>
int ft_strequ(char const *s1, char const *s2)
{
int i;
i = 0;
if (s1 == NULL || s2 == NULL)
return (0);
while (s1[i] == s2[i] && s1[i] != '\0' && s2[i] != '\0')
i++;
if (s1[i] == '\0' && s2[i] == '\0')
return (1);
else
return (0);
}