-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strjoin.c
31 lines (28 loc) · 1.23 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: gmelisan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/25 20:33:50 by gmelisan #+# #+# */
/* Updated: 2018/11/27 17:22:46 by gmelisan ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
size_t len1;
size_t len2;
char *res;
len1 = ft_strlen(s1);
len2 = ft_strlen(s2);
res = (char *)malloc(sizeof(char) * (len1 + len2 + 1));
if (!res)
return (NULL);
ft_strncpy(res, s1, len1);
ft_strncpy(&res[len1], s2, len2);
res[len1 + len2] = '\0';
return (res);
}