-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils.c
98 lines (88 loc) · 1.17 KB
/
get_next_line_utils.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
#include "get_next_line.h"
void ft_bzero(void *s, size_t n)
{
char *a;
size_t i;
a = (char *)s;
i = 0;
while (i < n)
{
a[i] = 0;
i++;
}
}
int ft_strrchr(const char *s, int c)
{
int i;
i = 0;
while (s[i])
{
if (s[i] == (unsigned char) c)
{
i++;
return (i);
}
i++;
}
return (0);
}
size_t ft_strlen(const char *s)
{
size_t i;
i = 0;
while (s[i] != '\0')
{
if (s[i] == '\n')
{
i++;
return (i);
}
i++;
}
return (i);
}
char *ft_strjoin(char const *s1, char const *s2)
{
char *newstring;
size_t i;
size_t j;
j = 0;
i = 0;
if (!s1 || !s2)
return (NULL);
newstring = malloc(sizeof(char) * (ft_strlen(s1) + ft_strlen(s2) + 1));
if (!newstring)
return (NULL);
while (s1[i] != '\0')
{
newstring[i] = s1[i];
i++;
}
while (s2[j] != '\0' && s2[j] != '\n')
{
newstring[i++] = s2[j];
j++;
}
if (s2[j] == '\n')
newstring[i++] = s2[j];
newstring[i] = '\0';
return (newstring);
}
void *ft_memmove(void *dest, const void *src, size_t n)
{
unsigned char *s;
unsigned char *d;
size_t i;
s = (unsigned char *)src;
d = (unsigned char *)dest;
i = 0;
{
while (n)
{
d[i] = s[i];
i++;
n--;
}
}
return (dest);
}