-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils.c
87 lines (78 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
84
85
86
87
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jvalle-d <jvalle-d@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/11 12:40:20 by jvalle-d #+# #+# */
/* Updated: 2024/06/11 13:03:52 by jvalle-d ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
void *ft_calloc(size_t count, size_t size)
{
char *result;
size_t i;
i = 0;
result = malloc(count * size);
if (result != NULL)
{
while (i < size * count)
{
result[i] = 0;
i++;
}
}
return ((void *)result);
}
int ft_strlen(const char *s)
{
int i;
i = 0;
while (s[i] != '\0')
i++;
return (i);
}
char *ft_strchr(const char *s, int c)
{
if ((char)c == 0)
return (&((char *)s)[ft_strlen(s)]);
while (*s)
{
if (*s == (char)c)
return (((char *)s));
s++;
}
return (NULL);
}
char *ft_strjoin(char *s1, const char *s2)
{
char *join;
unsigned int i;
unsigned int j;
i = 0;
join = (char *)malloc(sizeof(char) * (ft_strlen(s1) + ft_strlen(s2) + 1));
if (!join)
return (NULL);
while (s1[i] != '\0')
{
join[i] = s1[i];
i++;
}
j = 0;
while (s2[j] != '\0')
{
join[i] = s2[j];
i++;
j++;
}
join[i] = '\0';
return (join);
}
char *ft_free(char *buffer)
{
free(buffer);
buffer = NULL;
return (NULL);
}