-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils_bonus.c
64 lines (57 loc) · 1.59 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ana-lda- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/17 11:11:12 by ana-lda- #+# #+# */
/* Updated: 2024/05/25 21:25:41 by ana-lda- ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
size_t ft_strlen(const char *s)
{
size_t i;
i = 0;
while (!s)
return (0);
while (s[i])
i++;
return (i);
}
char *ft_strchr(const char *s, int c)
{
int i;
i = 0;
if (!s)
return (NULL);
while (s[i] && s[i] != (unsigned char)c)
i++;
if (s[i] == (unsigned char)c)
return ((char *)&s[i]);
return (0);
}
char *ft_strjoin(char *s1, const char *s2)
{
char *new;
size_t i;
size_t j;
if (!s1)
{
s1 = malloc(sizeof(char) * 1);
s1[0] = '\0';
}
new = malloc(sizeof(char) * (ft_strlen(s1) + ft_strlen(s2) + 1));
if (!new)
return (NULL);
i = -1;
while (s1[++i])
new[i] = s1[i];
j = -1;
while (s2[++j])
new[i + j] = s2[j];
free(s1);
new[i + j] = '\0';
return (new);
}