-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strjoin.c
32 lines (29 loc) · 1.19 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
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jkwayiba <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/06/24 23:12:57 by jkwayiba #+# #+# */
/* Updated: 2019/06/25 00:05:51 by jkwayiba ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
size_t i;
size_t j;
size_t k;
char *s3;
if (!s1 || !s2)
return (NULL);
i = ft_strlen(s1);
j = ft_strlen(s2);
k = i + j;
if (!(s3 = ft_strnew(k)))
return (NULL);
s3 = ft_strcat(s3, (char *)s1);
s3 = ft_strcat(s3, (char *)s2);
return (s3);
}