-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils.c
67 lines (60 loc) · 1.48 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: atabiti <atabiti@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/26 09:45:39 by atabiti #+# #+# */
/* Updated: 2022/03/23 09:24:30 by atabiti ### ########.fr */
/* */
/* ************************************************************************** */
#include "so_long.h"
char *ft_strchr(char *s, int c)
{
unsigned int i;
i = 0;
while (s[i])
{
if (s[i] == (char ) c)
return ((char *) s + i);
i++;
}
return (0);
}
int ft_strlen(char *s)
{
int i;
i = 0;
while (s[i] != '\0')
{
i++;
}
return (i);
}
char *ft_join(char *s1, char *s2)
{
int i;
int b;
char *s;
if (!s1)
{
s1 = malloc(sizeof(char) * 1);
s1[0] = '\0';
}
i = 0;
s = malloc (sizeof(char ) * (ft_strlen(s1) + ft_strlen(s2) + 1));
if (!s)
return (NULL);
while (s1[i])
{
s[i] = s1[i];
i++;
}
b = 0;
while (s2[b])
s[i++] = s2[b++];
s[i] = 0;
free (s1);
return (s);
}