-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils.c
83 lines (74 loc) · 1.84 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: javiersa <javiersa@student.42malaga.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/18 16:47:04 by javiersa #+# #+# */
/* Updated: 2023/01/18 21:48:07 by javiersa ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
int ft_strlen_gnl(const char *s)
{
int i;
i = 0;
while (s[i])
i++;
return (i);
}
void *ft_calloc_gnl(size_t count, size_t size)
{
void *calloc;
calloc = malloc (size * count);
if (!calloc)
return (0);
count = size * count;
size = 0;
while (size < count)
{
((char *)calloc)[size] = 0;
size++;
}
return (calloc);
}
char *ft_strchr_gnl(const char *s, int c)
{
unsigned char character;
character = (unsigned char)c;
c = 0;
while (s[c])
{
if (s[c] == character)
return (&((char *)s)[c]);
c++;
}
if (character == 0)
return (&((char *)s)[c]);
return (0);
}
char *ft_strjoin_gnl(char const *s1, char const *s2)
{
size_t i;
size_t j;
char *strjoin;
j = ft_strlen_gnl(s1) + ft_strlen_gnl(s2);
i = 0;
strjoin = malloc ((j + 1) * sizeof(char));
if (!strjoin)
return (0);
while (s1[i])
{
strjoin[i] = s1[i];
i++;
}
j = 0;
while (s2[j])
{
strjoin[i + j] = s2[j];
j++;
}
strjoin[i + j] = 0;
return (strjoin);
}