-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils_bonus.c
98 lines (87 loc) · 1.97 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: roramos <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/10 12:51:45 by roramos #+# #+# */
/* Updated: 2022/11/14 16:51:29 by roramos ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
int ft_strlen(const char *s)
{
int i;
i = 0;
while (s[i])
i++;
return (i);
}
char *ft_strchr(const char *s, int c)
{
char *str;
str = (char *)s;
while (*str != c)
{
if (*str == '\0')
return (NULL);
str++;
}
return (str);
}
char *ft_strjoin(char *s1, char *s2)
{
char *start;
char *str;
if (!s1)
return (NULL);
str = (char *)malloc((ft_strlen(s1) + ft_strlen(s2) + 1) * sizeof(char));
if (!str)
return (NULL);
start = str;
while (*s1)
*str++ = *s1++;
while (*s2)
*str++ = *s2++;
*str = '\0';
return (start);
}
void *ft_calloc(unsigned int count, unsigned int size)
{
void *pointer;
unsigned char *p;
unsigned int n;
pointer = malloc(count * size);
if (!pointer)
return (NULL);
p = pointer;
n = size * count;
while (n--)
*p++ = '\0';
return (pointer);
}
char *ft_itoa(int n)
{
char *str;
int i;
long int nb;
nb = n;
i = 0;
while (nb > 0)
{
nb /= 10;
i++;
}
nb = n;
str = ft_calloc(i + 1, sizeof(char));
if (!str)
return (0);
str[i--] = 0;
while (nb > 0)
{
str[i--] = nb % 10 + '0';
nb /= 10;
}
return (str);
}