-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils_bonus.c
83 lines (74 loc) · 1.83 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aleslie <aleslie@student.21-school.ru> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/25 18:09:48 by aleslie #+# #+# */
/* Updated: 2021/11/15 12:10:17 by aleslie ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
size_t ft_strlen(char *str)
{
size_t i;
if (str == NULL)
return (0);
i = 0;
while (str[i])
i++;
return (i);
}
char *ft_strchr(const char *s, int c)
{
char *str;
str = (char *)s;
while (*str != (unsigned char)c)
{
if (*str == '\0')
return (NULL);
str++;
}
return (str);
}
char *ft_strjoin(char *s1, char *s2)
{
int i;
int j;
char *mem;
i = 0;
j = 0;
if (s1 == NULL && s2 == NULL)
return (NULL);
mem = (char *)malloc(ft_strlen(s1) + ft_strlen(s2) + 1);
if (mem == NULL)
return (NULL);
while (s1 && s1[i])
mem[j++] = s1[i++];
i = 0;
while (s2 && s2[i])
mem[j++] = s2[i++];
mem[j] = '\0';
return (mem);
}
char *ft_strdup(const char *s1)
{
size_t i;
size_t len;
char *mem;
char *str;
str = (char *)s1;
len = ft_strlen((char *)s1);
mem = (char *)malloc(sizeof(char) * (len + 1));
if (!mem)
return (NULL);
i = 0;
while (i < len)
{
mem[i] = str[i];
i++;
}
mem[i] = '\0';
return (mem);
}