-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line_utils_bonus.c
35 lines (32 loc) · 1.27 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: humbi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/09 12:05:07 by rbetz #+# #+# */
/* Updated: 2024/07/11 20:08:22 by humbi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin_ns(char *s1, char *s2)
{
char *p1;
size_t len_s1;
size_t len_s2;
if (s1 == NULL || s2 == NULL)
return (NULL);
len_s1 = ft_strlen(s1);
len_s2 = ft_strlen(s2);
p1 = malloc((len_s1 + len_s2 + 1) * sizeof(char));
if (p1 == NULL)
{
free(s1);
return (NULL);
}
ft_memcpy(p1, s1, len_s1);
ft_memcpy(&p1[len_s1], s2, len_s2 + 1);
free(s1);
return (p1);
}