-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils_bonus.c
117 lines (106 loc) · 2.22 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
112
113
114
115
116
117
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: haarab <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/27 12:59:52 by haarab #+# #+# */
/* Updated: 2022/12/27 13:04:20 by haarab ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
size_t ft_strlen(const char *str)
{
size_t i;
i = 0;
while (str[i] != '\0')
i++;
return (i);
}
int check_new_line(char *str)
{
int i;
i = 0;
while (str[i])
{
if (str[i] == '\n')
return (1);
i++;
}
return (0);
}
char *ft_get_line(char *str)
{
char *ptr;
int i;
i = 0;
if (!str || str[i] == 0)
return (0);
ptr = malloc(sizeof(char) * ft_strlen(str) + 1);
if (!ptr)
return (0);
i = 0;
while (str[i] && str[i] != '\n')
{
ptr[i] = str[i];
i++;
}
if (str[i] == '\n')
{
ptr[i] = str[i];
i++;
}
ptr[i] = '\0';
return (ptr);
}
char *ft_strjoin(char *s1, char *s2)
{
char *str;
size_t i;
size_t j;
if (!s1)
{
s1 = (char *)malloc(1 * sizeof(char));
s1[0] = '\0';
}
str = malloc(sizeof(char) * (ft_strlen(s1) + ft_strlen(s2) +1));
if (!str)
return (NULL);
i = 0;
j = 0;
while (s1[i] != '\0')
str[j++] = s1[i++];
i = 0;
while (s2[i] != '\0')
str[j++] = s2[i++];
str[j] = '\0';
free (s1);
return (str);
}
char *ft_cut(char *str)
{
char *ptr;
int i;
int j;
i = 0;
if (!str)
return (NULL);
while (str[i] && str[i] != '\n')
i++;
if (str[i] == 0)
{
free(str);
return (NULL);
}
i++;
ptr = malloc((ft_strlen(str) - i + 1) * sizeof(char));
if (!ptr)
return (NULL);
j = 0;
while (str[i])
ptr[j++] = str[i++];
ptr[j] = '\0';
free(str);
return (ptr);
}