-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strstr.c
38 lines (35 loc) · 1.22 KB
/
ft_strstr.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
33
34
35
36
37
38
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hezzahir <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/04 03:44:39 by hezzahir #+# #+# */
/* Updated: 2018/11/06 00:56:01 by hezzahir ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strstr(const char *str, const char *to_find)
{
int i;
int j;
int length;
i = 0;
j = 0;
length = ft_strlen(to_find);
if (length == 0)
return ((char*)str);
while (str[i])
{
while (to_find[j] == str[i + j])
{
if (j == length - 1)
return ((char*)str + i);
j++;
}
j = 0;
i++;
}
return (NULL);
}