-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils_bonus.c
106 lines (95 loc) · 2.2 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
104
105
106
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mriant <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/17 11:10:07 by mriant #+# #+# */
/* Updated: 2021/12/17 11:10:57 by mriant ### ########.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);
}
void *ft_calloc(size_t count, size_t size)
{
void *result;
size_t i;
char *str;
result = malloc(count * size);
if (!result)
return (NULL);
str = (char *)result;
i = 0;
while (i < count * size)
{
str[i] = '\0';
i++;
}
return (result);
}
char *ft_strchr(const char *s, int c)
{
unsigned int i;
unsigned char *str;
i = 0;
str = (unsigned char *) s;
while (str[i])
{
if (str[i] == (unsigned char) c)
return ((char *)s + i);
i ++;
}
if (str[i] == (unsigned char) c)
return ((char *)s + i);
return (NULL);
}
char *ft_substr(char const *s, unsigned int start, size_t len)
{
char *result;
size_t i;
if (!s || start > ft_strlen(s))
{
result = ft_calloc(1, 1);
return (result);
}
if (ft_strlen(s) - start < len)
i = ft_strlen(s) - start;
else
i = len;
result = ft_calloc(sizeof(char), (i + 1));
if (!result)
return (NULL);
i = 0;
while (s[i + start] && i < len)
{
result[i] = s[i + start];
i ++;
}
return (result);
}
char *ft_strdup(const char *s1)
{
char *dest;
int i;
dest = malloc(sizeof(char) * (ft_strlen(s1) + 1));
if (!dest)
return (NULL);
i = 0;
while (s1 && s1[i])
{
dest[i] = s1[i];
i ++;
}
dest[i] = '\0';
return (dest);
}