-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils.c
90 lines (81 loc) · 1.87 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akdemir <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/27 16:39:11 by akdemir #+# #+# */
/* Updated: 2023/08/02 16:58:40 by akdemir ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
int ft_strlen(const char *str)
{
int i;
if (!str)
return (0);
i = 0;
while (str[i])
i++;
return (i);
}
int nlcheck(const char *s)
{
int i;
if (!s)
return (0);
i = 0;
while (s[i])
{
if (s[i] == '\n')
return (1);
i++;
}
return (0);
}
char *ft_substr(char *s, int start, int len)
{
char *p;
int i;
int slen;
if (!s)
return (NULL);
slen = ft_strlen(s);
if (len > slen - start)
len = slen - start;
p = (char *)malloc(sizeof(char) * (len + 1));
if (!p)
return (NULL);
i = 0;
while (s[start + i] && i < len)
{
p[i] = s[start + i];
i++;
}
p[i] = '\0';
return (p);
}
char *ft_strjoin(char *s1, char *s2)
{
char *str;
int i;
int j;
if (!s1)
{
s1 = (char *)malloc(sizeof(char) * 1);
*s1 = '\0';
}
str = (char *)malloc(sizeof(char) * (ft_strlen(s1) + ft_strlen(s2) + 1));
if (!str)
return (NULL);
i = -1;
while (s1[++i])
str[i] = s1[i];
j = -1;
while (s2[++j])
str[i + j] = s2[j];
str[i + j] = '\0';
free(s1);
return (str);
}