-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils.c
66 lines (59 loc) · 1.59 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ngobert <ngobert@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/01 17:12:38 by ngobert #+# #+# */
/* Updated: 2021/12/02 12:53:55 by ngobert ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
size_t ft_strlen(char *str)
{
size_t i;
if (!str)
return (0);
i = 0;
while (str[i])
i++;
return (i);
}
int ft_check_nl(char *str)
{
if (str[0] == '\n')
return (1);
return (0);
}
char *ft_free(char *str)
{
free(str);
return (0);
}
char *ft_strjoin(char *s1, char *s2)
{
char *dest;
size_t i;
size_t j;
if (!s1)
{
s1 = malloc(1 * sizeof(char));
s1[0] = '\0';
}
if (!s1 || !s2)
return (NULL);
dest = malloc(sizeof(char) * ft_strlen(s1) + ft_strlen(s2) + 1);
if (!dest)
return (NULL);
i = -1;
j = 0;
if (s1)
while (s1[++i] != '\0')
dest[i] = s1[i];
while (s2[j])
dest[i++] = s2[j++];
dest[ft_strlen(s1) + ft_strlen(s2)] = '\0';
free(s1);
return (dest);
}