-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils_bonus.c
111 lines (100 loc) · 2.19 KB
/
get_next_line_utils_bonus.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fporto <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/05/12 16:59:20 by fporto #+# #+# */
/* Updated: 2021/05/12 16:59:21 by fporto ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
size_t ft_strlen(const char *s)
{
int i;
i = 0;
while (s[i])
i++;
return (i);
}
static int rng(char *s, unsigned int start, size_t len)
{
size_t i;
i = 0;
if (!s[i] || start > ft_strlen(s))
return (0);
while (s[start + i] && i < len)
i++;
return (i);
}
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *str;
size_t i;
size_t j;
size_t range;
if (!s)
return (NULL);
j = 0;
range = rng((char *)s, start, len);
str = malloc(range + 1);
if (ft_strlen(s) >= start)
{
if (!str)
return (NULL);
i = start;
while (s[i] && j < range)
{
str[j] = s[i];
i++;
j++;
}
}
str[j] = '\0';
return (str);
}
char *ft_strdup(const char *s1)
{
char *str1;
size_t i;
i = 0;
while (s1[i])
i++;
str1 = malloc(i + 1);
if (!str1)
return (NULL);
i = 0;
while (s1[i])
{
str1[i] = s1[i];
i++;
}
str1[i] = '\0';
return (str1);
}
char *ft_strjoin(char const *s1, char const *s2)
{
char *str;
size_t len;
size_t i;
size_t j;
if (!s1 && !s2)
return (NULL);
if (!s1)
return (ft_strdup(s2));
if (!s2)
return (ft_strdup(s1));
len = ft_strlen(s1) + ft_strlen(s2);
str = malloc(len + 1);
if (!str)
return (NULL);
i = -1;
while (s1[++i])
str[i] = s1[i];
j = 0;
while (s2[j])
str[i++] = s2[j++];
str[i] = '\0';
return (str);
}