-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strstr.c
38 lines (35 loc) · 1.24 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: npimenof <npimenof@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/16 16:55:44 by npimenof #+# #+# */
/* Updated: 2019/10/17 15:05:06 by npimenof ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strstr(const char *haystack, const char *needle)
{
int i;
int j;
int k;
if (needle[0] == '\0')
return ((char *)haystack);
i = 0;
while (haystack[i])
{
j = i;
k = 0;
while (haystack[j] == needle[k] && haystack[j])
{
j++;
k++;
if (needle[k] == '\0')
return ((char *)&haystack[i]);
}
i++;
}
return (NULL);
}