-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils.c
71 lines (64 loc) · 1.74 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edegraev <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/23 11:59:31 by edegraev #+# #+# */
/* Updated: 2023/12/07 01:12:50 by edegraev ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
size_t ft_strlen(char *s)
{
size_t i;
i = 0;
if (!s)
return (0);
while (s[i] != '\0')
i++;
return (i);
}
char *ft_strjoin(char *stash, char *buff)
{
size_t i;
size_t j;
char *str;
if (!stash)
{
stash = (char *)malloc(1 * sizeof(char));
stash[0] = '\0';
}
if (!stash || !buff)
return (NULL);
str = malloc(sizeof(char) * ((ft_strlen(stash) + ft_strlen(buff)) + 1));
if (str == NULL)
return (NULL);
i = -1;
j = 0;
if (stash)
while (stash[++i] != '\0')
str[i] = stash[i];
while (buff[j] != '\0')
str[i++] = buff[j++];
str[ft_strlen(stash) + ft_strlen(buff)] = '\0';
free(stash);
return (str);
}
char *ft_strchr(char *s, int c)
{
int i;
i = 0;
if (!s)
return (0);
if (c == '\0')
return ((char *)&s[ft_strlen(s)]);
while (s[i] != '\0')
{
if (s[i] == (char) c)
return ((char *)&s[i]);
i++;
}
return (0);
}