-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils.c
68 lines (60 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ykoh <ykoh@student.42seoul.kr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/05/28 19:47:25 by ykoh #+# #+# */
/* Updated: 2020/06/05 13:14:46 by ykoh ### ########.fr */
/* */
/* ************************************************************************** */
#include "get_next_line.h"
char *ft_strchr(const char *s, int c)
{
if (!s)
return (NULL);
while (*s != c)
{
if (*s == '\0')
return (NULL);
s++;
}
return ((char *)s);
}
size_t ft_strlen(const char *s)
{
size_t i;
i = 0;
while (s[i])
i++;
return (i);
}
char *ft_strndup(const char *s1, size_t n)
{
char *dst;
size_t i;
const size_t len = (ft_strlen(s1) > n) ? n : ft_strlen(s1);
if (!(dst = malloc((len + 1) * sizeof(char))))
return (NULL);
i = 0;
while (i < len)
dst[i++] = *s1++;
dst[i] = '\0';
return (dst);
}
char *ft_strjoin(char const *s1, char const *s2)
{
char *str;
size_t i;
const size_t str_len = ft_strlen(s1) + ft_strlen(s2);
if (!(str = malloc((str_len + 1) * sizeof(char))))
return (NULL);
i = 0;
while (*s1)
str[i++] = *s1++;
while (*s2)
str[i++] = *s2++;
str[i] = '\0';
return (str);
}