-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget_next_line_utils_bonus.c
71 lines (64 loc) · 1.63 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fcil <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/11 17:41:37 by fcil #+# #+# */
/* Updated: 2022/02/15 16:02:04 by fcil ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
size_t ft_strlen(const char *s)
{
size_t i;
i = 0;
if (!s)
return (0);
while (s[i])
i++;
return (i);
}
char *ft_strchr(const char *s, int c)
{
int s_len;
if (!s)
return (0);
s_len = ft_strlen(s);
while (s_len >= 0)
{
if (*s == (char)c)
return ((char *)s);
s++;
s_len--;
}
return (NULL);
}
char *ft_strjoin(char *s1, char *s2)
{
unsigned int i;
unsigned int j;
char *s3;
if (!s1)
{
s1 = (char *)malloc(1 * sizeof(char));
s1[0] = '\0';
}
if (!s1 || !s2)
return (NULL);
s3 = malloc(ft_strlen(s1) + ft_strlen(s2) + 1);
if (!s3)
return (NULL);
i = -1;
while (s1[++i] != 0)
s3[i] = s1[i];
j = -1;
while (s2[++j] != 0)
{
s3[i + j] = s2[j];
}
s3[i + j] = 0;
free(s1);
return (s3);
}