-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_strnstr.c
More file actions
35 lines (32 loc) · 1.22 KB
/
ft_strnstr.c
File metadata and controls
35 lines (32 loc) · 1.22 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: wphylici <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/05/10 19:35:00 by wphylici #+# #+# */
/* Updated: 2020/05/23 02:52:45 by wphylici ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strnstr(const char *big, const char *little, size_t n)
{
size_t i;
size_t c;
i = 0;
if (*little == '\0')
return ((char *)big);
while (big[i] != '\0' && i < n)
{
c = 0;
while (big[i + c] == little[c] && (i + c) < n)
{
if (little[c + 1] == '\0')
return ((char *)big + i);
c++;
}
i++;
}
return (NULL);
}