-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparsing_utils.c
59 lines (52 loc) · 1.5 KB
/
parsing_utils.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
51
52
53
54
55
56
57
58
59
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* parsing_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rd-agost <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/19 17:26:17 by rd-agost #+# #+# */
/* Updated: 2024/06/20 16:49:00 by rd-agost ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
char *ft_strnstr(const char *big, const char *little, size_t len)
{
size_t h;
size_t n;
h = 0;
if (little[0] == '\0')
return ((char *)big);
while (big[h] != '\0')
{
n = 0;
while (big[h + n] == little[n] && (h + n) < len)
{
if (big[h + n] == '\0' && little[n] == '\0')
return ((char *)&big[h]);
n++;
}
if (little[n] == '\0')
return ((char *)big + h);
h++;
}
return (NULL);
}
int ft_strlen(char *str)
{
int i;
i = 0;
while (str && str[i] != '\0')
{
i++;
}
return (i);
}
int ft_len(const char *str, char c)
{
int i;
i = 0;
while (str[i] != c && str[i])
i++;
return (i);
}