-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils_bonus.c
84 lines (75 loc) · 1.8 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: olachgue <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/29 15:37:32 by olachgue #+# #+# */
/* Updated: 2024/11/30 14:14:31 by olachgue ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line_bonus.h"
size_t ft_strlen(const char *s)
{
size_t i;
if (!s)
return (0);
i = 0;
while (s[i])
i++;
return (i);
}
char *ft_strchr(const char *s, int c)
{
char *p;
p = (char *)s;
while (*p != '\0')
{
if (*p == (char )c)
return (p);
p++;
}
if ((char )c == '\0')
return (p);
return (NULL);
}
char *ft_strjoin(char *s1, char *s2)
{
char *jnd;
int j;
int i;
j = 0;
i = -1;
if (!s2)
return (NULL);
if (!s1)
{
s1 = (char *)malloc (1 * sizeof(char));
if (!s1)
return (NULL);
s1[0] = '\0';
}
jnd = (char *)malloc(sizeof(char) * (ft_strlen(s1) + ft_strlen(s2) + 1));
if (!jnd)
return (free(s1), NULL);
while (s1[++i])
jnd[i] = s1[i];
while (s2[j])
jnd[i++] = s2[j++];
jnd[i] = '\0';
free(s1);
return (jnd);
}
char *ft_strncpy(char *dst, char *src, size_t n)
{
size_t i;
i = 0;
while (i < n && src[i])
{
dst[i] = src[i];
i++;
}
dst[i] = '\0';
return (dst);
}