-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils_bonus.c
65 lines (58 loc) · 1.5 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: msodor <msodor@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/20 19:38:29 by msodor #+# #+# */
/* Updated: 2022/12/20 19:51:26 by msodor ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
int ft_strlen(char *str)
{
int i;
i = 0;
while (str && str[i])
i++;
return (i);
}
char *ft_strjoin(char *s1, char *s2)
{
char *str;
int len;
int i;
int j;
if (s1 == NULL)
{
s1 = malloc(1);
s1[0] = '\0';
}
len = ft_strlen(s1) + ft_strlen(s2);
str = malloc((len + 1) * sizeof(char));
if (!str)
return (NULL);
i = 0;
j = 0;
while (s1[j])
str[i++] = s1[j++];
j = 0;
while (s2[j])
str[i++] = s2[j++];
str[i] = '\0';
free(s1);
return (str);
}
int ft_strchr(char *str, char c)
{
int i;
i = 0;
while (str && str[i])
{
if (str[i] == c)
return (1);
i++;
}
return (0);
}