-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strjoin.c
31 lines (28 loc) · 1.25 KB
/
ft_strjoin.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: solariscode <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/02 11:45:21 by melkholy #+# #+# */
/* Updated: 2022/02/13 07:46:40 by solariscode ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
char *nstr;
size_t len_s1;
size_t len_s2;
if (!s1 || !s2)
return (NULL);
len_s1 = ft_strlen(s1);
len_s2 = ft_strlen(s2);
nstr = (char *)malloc((len_s1 + len_s2 + 1) * sizeof(char));
if (!nstr)
return (NULL);
ft_strlcpy(nstr, s1, len_s1 + 1);
ft_strlcpy(&nstr[len_s1], s2, len_s2 + 1);
return (nstr);
}