-
Notifications
You must be signed in to change notification settings - Fork 8
/
get_next_line_utils_bonus.c
89 lines (78 loc) · 1.93 KB
/
get_next_line_utils_bonus.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jdecorte <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/19 11:14:11 by jdecorte #+# #+# */
/* Updated: 2021/10/19 11:59:38 by jdecorte ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
char *ft_strjoin(char const *s1, char const *s2)
{
int sizetotal;
char *res;
int i;
int j;
i = 0;
sizetotal = ft_strlen(s1) + ft_strlen(s2);
res = malloc(sizeof(char) * (sizetotal + 1));
if (!res || !s1 || !s2)
return (NULL);
while (s1[i] != 0)
{
res[i] = s1[i];
i++;
}
j = 0;
while (s2[j] != 0)
{
res[i] = s2[j];
i++;
j++;
}
res[sizetotal] = 0;
return (res);
}
char *ft_strchr(const char *string, int searchedChar )
{
char *str;
str = (char *)string;
while (*str != searchedChar && *str != 0)
str++;
if (*str == searchedChar)
return (str);
else
return (NULL);
}
void ft_bzero(void *s, size_t n)
{
char *str;
size_t i;
str = (char *)s;
i = 0;
while (i < n)
{
str[i] = '\0';
i++;
}
}
void *ft_calloc(size_t elementCount, size_t elementSize)
{
char *res;
res = malloc(elementSize * elementCount);
if (!res)
return (NULL);
ft_bzero(res, elementSize * elementCount);
return (res);
}
size_t ft_strlen(const char *theString)
{
int i;
i = 0;
while (theString[i])
i++;
return (i);
}