-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils_bonus.c
88 lines (79 loc) · 1.86 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: javellis <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/02 14:47:54 by javellis #+# #+# */
/* Updated: 2022/11/02 14:47:59 by javellis ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include "get_next_line_bonus.h"
void *ft_calloc(unsigned int nmemb, unsigned int size)
{
int i;
char *c;
i = 0;
c = malloc(nmemb * size);
while ((unsigned int)i < nmemb)
{
c[i] = 0;
i++;
}
return (c);
}
int ft_strlen(const char *s)
{
int i;
i = 0;
if (!s)
return (0);
while (s[i] != '\0')
i++;
return (i);
}
char *ft_strchr(const char *s, int c)
{
int i;
int len;
len = ft_strlen(s);
i = 0;
while (i < len + 1)
{
if (s[i] == c)
return ((char *)&s[i]);
i++;
}
return (NULL);
}
char *ft_strjoin(char *s1, char *s2)
{
char *str;
size_t size;
int i;
int j;
i = -1;
j = 0;
str = 0;
if (!s1)
{
s1 = malloc(sizeof(char));
s1[0] = '\0';
}
size = ft_strlen(s2) + ft_strlen(s1) + 1;
str = (char *)malloc(size);
if (!str)
return (NULL);
while (++i < ft_strlen(s1))
str[i] = s1[i];
while (j < ft_strlen(s2))
str[i++] = s2[j++];
str[i] = '\0';
free(s1);
return (str);
}