-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strnstr.c
50 lines (45 loc) · 1.69 KB
/
ft_strnstr.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
39
40
41
42
43
44
45
46
47
48
49
50
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_strnstr.c :+: :+: */
/* +:+ */
/* By: kgajadie <[email protected]> +#+ */
/* +#+ */
/* Created: 2020/11/17 16:44:20 by kgajadie #+# #+# */
/* Updated: 2021/03/04 21:15:01 by kawish ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
/* The strnstr() function locates the first occurrence of the null-ter-
minated string needle in the string haystack, where not more than len
characters are searched. Characters that appear after a `\0' charac-
ter are not searched.
a pointer to the first character of the needle in haystack
if needle is not in haystack, NULL is returned
if needle is empty string, haystack is returned */
char *ft_strnstr(const char *haystack, const char *needle, size_t len)
{
size_t i;
size_t j;
i = 0;
j = 0;
if (needle[0] == '\0')
{
return ((char *)haystack);
}
while ((i < len) && (haystack[i] != '\0'))
{
while (((haystack[i + j] == needle[j])
&& ((i + j) < len)) || (needle[j] == '\0'))
{
if (needle[j] == '\0')
{
return ((char *)&haystack[i]);
}
j++;
}
j = 0;
i++;
}
return (0);
}