-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils_bonus.c
103 lines (92 loc) · 2.05 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ehossain <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/26 09:42:26 by ehossain #+# #+# */
/* Updated: 2025/01/01 18:25:35 by ehossain ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
void *ft_calloc(size_t nmemb, size_t size)
{
unsigned char *ptr;
size_t i;
i = 0;
ptr = malloc(nmemb * size);
if (!ptr)
return (NULL);
while (i < nmemb)
{
ptr[i] = 0;
i++;
}
return (ptr);
}
size_t ft_strlen(const char *str)
{
size_t i;
i = 0;
while (str[i] != '\0')
{
i++;
}
return (i);
}
char *ft_strchr(const char *str, int i)
{
size_t count;
count = 0;
while (str[count] != '\0')
{
if (str[count] == (char)i)
return ((char *)&str[count]);
count++;
}
if (str[count] == (char)i)
return ((char *)&str[count]);
return (NULL);
}
char *ft_strjoin(char const *s1, char const *s2)
{
size_t i;
size_t j;
size_t n;
char *dest;
if (!s1 || !s2)
return (NULL);
i = 0;
j = 0;
n = ft_strlen(s1) + ft_strlen(s2) + 1;
dest = ft_calloc(n, sizeof(char));
if (!dest)
return (NULL);
while (s1[i])
{
dest[i] = s1[i];
i++;
}
while (s2[j])
{
dest[j + i] = s2[j];
j++;
}
dest[i + j] = '\0';
return (dest);
}
char *ft_str_free_join(char *str1, char *str2)
{
char *dest;
dest = ft_strjoin(str1, str2);
if (!dest)
{
free(str1);
str1 = NULL;
return (NULL);
}
free(str1);
str1 = NULL;
return (dest);
}