-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils.c
86 lines (77 loc) · 1.83 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
83
84
85
86
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: roudouch <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/14 14:01:20 by roudouch #+# #+# */
/* Updated: 2021/11/14 14:01:21 by roudouch ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
int ft_index(const char *s, char c)
{
unsigned int i;
if (!s)
return (-1);
i = 0;
while (s[i] != '\0')
{
if (s[i] == c)
return (i);
i++;
}
if (s[i] == c)
return (i);
return (-1);
}
unsigned int ft_strlen(const char *str)
{
unsigned int num;
num = 0;
while (str[num] != '\0')
num++;
return (num);
}
char *ft_strdup(const char *s1)
{
unsigned int size;
char *ptr;
int i;
size = ft_strlen(s1);
ptr = malloc((size + 1) * sizeof(char));
if (!ptr)
return (NULL);
i = 0;
while (s1[i])
{
ptr[i] = s1[i];
i++;
}
ptr[i] = '\0';
return (ptr);
}
char *ft_strjoin(char *s1, char const *s2)
{
char *string;
size_t i;
size_t x;
if (!s1)
s1 = ft_strdup("");
string = malloc(sizeof(char) * (ft_strlen(s1) + ft_strlen(s2) + 1));
if (!string)
return (NULL);
i = 0;
while (s1[i])
{
string[i] = s1[i];
i++;
}
x = 0;
while (s2[x])
string[i++] = s2[x++];
string[i] = 0;
free(s1);
return (string);
}