-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils.c
100 lines (89 loc) · 2.05 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: roferrei <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/22 00:45:30 by roferrei #+# #+# */
/* Updated: 2022/08/12 00:04:38 by roferrei ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
size_t ft_strlen(const char *s)
{
size_t i;
i = 0;
while (s[i] != '\0')
i++;
return (i);
}
char *ft_strdup(const char *s)
{
char *point;
size_t i;
i = 0;
point = (char *)malloc(sizeof(char) * ft_strlen(s) + 1);
if (point == NULL)
return (NULL);
while (s[i])
{
point[i] = s[i];
i++;
}
point[i] = '\0';
return (point);
}
char *ft_strchr(const char *s, int c)
{
size_t i;
i = 0;
while (s[i])
{
if (s[i] == (unsigned char)c)
return ((char *)s + i);
i++;
}
if (!c && s[i] == '\0')
return ((char *)s + i);
return (NULL);
}
size_t ft_strlcpy(char *dst, const char *src, size_t size)
{
size_t i;
i = 0;
if (!size)
return (ft_strlen(src));
while (i + 1 < size && src[i])
{
dst[i] = src[i];
i++;
}
dst[i] = '\0';
return (ft_strlen(src));
}
char *ft_strjoin(char const *s1, char const *s2)
{
int i;
int j;
char *str;
if (!s1 || !s2)
return (NULL);
i = 0;
j = 0;
str = (char *)malloc(sizeof(char) * (ft_strlen(s1) + ft_strlen(s2) + 1));
if (str == NULL)
return (NULL);
while (s1[i] != '\0')
{
str[i] = s1[i];
i++;
}
while (s2[j] != '\0')
{
str[i + j] = s2[j];
j++;
}
str[i + j] = '\0';
return (str);
}