-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strnstr.c
44 lines (40 loc) · 1.39 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: rhiguita <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/05 01:59:37 by rhiguita #+# #+# */
/* Updated: 2024/05/05 02:55:14 by rhiguita ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strnstr(const char *big, const char *little, size_t len)
{
size_t i;
size_t j;
i = 0;
if (little[i] == '\0')
return ((char *)big);
while (big[i] && i < len)
{
j = 0;
while (little[j] && big[i + j] == little[j]
&& i + j < len)
j++;
if (little[j] == '\0')
return ((char *)big + i);
i++;
}
return (0);
}
/*
int main()
{
const char *a = "Bienvendios a 42 madrid";
const char *b = "42";
char *r = ft_strnstr(a, b, 20);
printf("Ocurrencia de string: %s\n", r);
return (0);
}*/