-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils.c
82 lines (73 loc) · 1.71 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abazerou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/27 17:28:05 by abazerou #+# #+# */
/* Updated: 2023/01/01 00:02:14 by abazerou ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
size_t ft_strlen(const char *s)
{
int i;
i = 0;
while (*s++)
i++;
return (i);
}
char *ft_strdup(char *s)
{
char *p;
int i;
i = 0;
p = (char *)malloc(ft_strlen(s) * sizeof(char) + 1);
if (!p)
return (NULL);
while (s[i])
{
p[i] = s[i];
i++;
}
p[i] = '\0';
return (p);
}
char *ft_strjoin(char *s1, char *s2)
{
int i;
int x;
char *str;
i = 0;
x = 0;
if (!s1)
s1 = ft_strdup("");
if (!s2 || !s1)
return (NULL);
str = malloc((ft_strlen(s1) + ft_strlen(s2) +1) * sizeof(char));
if (!str)
return (NULL);
while (s1[i])
{
str[i] = s1[i];
i++;
}
while (s2[x])
str[i++] = s2[x++];
str[i] = '\0';
free(s1);
return (str);
}
int ft_strchr(char *s, int c)
{
int i;
i = 0;
if (!s)
return (0);
while (s[i] && s[i] != (char )c)
i++;
if (s[i] == (char )c)
return (1);
return (0);
}