-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strjoin.c
29 lines (26 loc) · 1.2 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: doley <doley@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/09 16:01:26 by doley #+# #+# */
/* Updated: 2024/10/09 19:22:28 by doley ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
size_t len;
char *result;
if (!s1 || !s2)
return (NULL);
len = ft_strlen(s1) + ft_strlen(s2);
result = ft_calloc(len + 1, 1);
if (!result)
return (NULL);
ft_strlcpy(result, s1, ft_strlen(s1) + 1);
ft_strlcat(result, s2, len + 1);
return (result);
}