-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils.c
111 lines (101 loc) · 2.24 KB
/
get_next_line_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
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.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fraqioui <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/27 13:55:28 by fraqioui #+# #+# */
/* Updated: 2022/11/01 11:12:35 by fraqioui ### ########.fr */
/* */
/* ************************************************************************** */
#include"get_next_line.h"
size_t ft_strlen(const char *s)
{
const char *end;
end = s;
while (*end)
end++;
return (end - s);
}
ssize_t ft_check_new_line(char *s1)
{
ssize_t i;
i = 0;
while (s1[i])
{
if (s1[i] == '\n')
return (i);
i++;
}
return (-1);
}
char *ft_strdup(const char *s)
{
char *arr;
size_t n;
int i;
n = ft_strlen(s);
i = 0;
arr = malloc(sizeof(char) * (n + 1));
if (!arr)
return (NULL);
while (n--)
{
arr[i] = s[i];
i++;
}
arr[i] = '\0';
return (arr);
}
char *ft_strjoin(char const *s1, char const *s2)
{
char *ptr;
char *str;
size_t i;
size_t j;
i = -1;
j = 0;
if (!s1)
str = ft_strdup("");
else
str = ft_strdup(s1);
ptr = (char *)malloc((ft_strlen(str) + ft_strlen(s2) + 1) * sizeof(char));
if (!ptr)
{
free(str);
return (0);
}
while (str[++i])
ptr[i] = str[i];
while (s2[j])
ptr[i++] = s2[j++];
ptr[i] = '\0';
free(str);
return (ptr);
}
char *ft_substr(char *s, unsigned int index, size_t len)
{
char *substr;
size_t s_len;
size_t i;
i = 0;
if (!s)
return (NULL);
s_len = ft_strlen(s);
if (index >= s_len)
return (ft_strdup(""));
if (s_len <= len + index)
substr = malloc(sizeof(char) * (s_len - index + 1));
else
substr = malloc(sizeof(char) * (len + 1));
if (!substr)
return (NULL);
while (s[index] && i < len)
{
substr[i] = s[index + i];
i++;
}
substr[i] = '\0';
return (substr);
}