-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strnstr.c
44 lines (40 loc) · 1.4 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hshawand <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/04 15:38:08 by hshawand #+# #+# */
/* Updated: 2019/04/05 16:46:10 by hshawand ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.h>
static int ft_scan(const char *str1, const char *str2, size_t len, size_t i)
{
while (*str2 != '\0')
{
if (*str1 != *str2 || i >= len)
return (0);
str1 = str1 + 1;
str2 = str2 + 1;
i++;
}
return (1);
}
char *ft_strnstr(const char *str1, const char *str2, size_t len)
{
size_t i;
i = 0;
if (*str2 == '\0')
return ((char *)str1);
while (*str1 != '\0' && i < len)
{
if (*str1 == *str2)
if (ft_scan(str1, str2, len, i))
return ((char *)str1);
str1 = str1 + 1;
i++;
}
return (0);
}