-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils.c
108 lines (97 loc) · 2.23 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whendrix <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/28 23:57:20 by whendrix #+# #+# */
/* Updated: 2022/08/05 19:12:38 by whendrix ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
size_t ft_strlen(const char *s)
{
size_t i;
i = 0;
while (s[i])
i++;
return (i);
}
char *ft_strchr(const char *str, int c)
{
int i;
char *new;
if (!str || !c)
return (NULL);
i = 0;
new = (char *)str;
while (new[i])
{
if (new[i] == (char) c)
return (&new[i]);
i++;
}
return (0);
}
char *ft_strjoin(char *s1, char *s2)
{
size_t i;
size_t j;
char *str;
if (!s1)
{
s1 = malloc(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])
{
str[i] = s1[i];
i++;
}
while (s2[j])
str[i++] = s2[j++];
str[i] = '\0';
free(s1);
return (str);
}
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *substr;
size_t i;
unsigned int slen;
if (!s)
return (NULL);
slen = ft_strlen(s);
if (((slen - start) > len) && (start < slen))
substr = malloc((len * sizeof(char) + 1));
else if (start > slen)
substr = malloc(sizeof(char));
else
substr = malloc(((slen - start) * sizeof(char) + 1));
if (!substr)
return (NULL);
i = 0;
if ((start < slen))
{
while ((i < len) && s[start])
substr[i++] = s[start++];
}
substr[i] = '\0';
return (substr);
}
int ft_endl(char *str)
{
int i;
i = 0;
while (str[i] != '\n' && str[i] != '\0')
i++;
if (str[i] == '\n')
return (1);
return (0);
}