-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils.c
68 lines (61 loc) · 1.69 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pcervill <pcervill@student.42madrid.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/04 17:25:22 by pcervill #+# #+# */
/* Updated: 2022/05/09 15:37:32 by pcervill ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
size_t ft_strlen(const char *str)
{
size_t cont;
cont = 0;
while (str[cont] != '\0')
cont++;
return (cont);
}
char *ft_strchr(const char *s, int c)
{
int cont;
cont = 0;
if (!s)
return (NULL);
while (s[cont])
{
if (s[cont] == (char)c)
return ((char *)s + cont);
cont++;
}
if (c == '\0')
return ((char *)s + cont);
return (NULL);
}
char *ft_strjoin(char *s1, char *s2)
{
char *str;
int cont;
int cont1;
cont = -1;
cont1 = -1;
if (!s1)
{
s1 = malloc(sizeof(char) * 1);
s1[0] = '\0';
}
if (!s1 || !s2)
return (NULL);
str = malloc((ft_strlen(s1) + ft_strlen(s2) + 1) * sizeof(char));
if (!str)
return (NULL);
while (s1[++cont])
str[cont] = s1[cont];
while (s2[++cont1])
str[cont + cont1] = s2[cont1];
str[cont + cont1] = '\0';
free(s1);
return (str);
}