-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strjoin.c
37 lines (34 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
32
33
34
35
36
37
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tparand <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/10 16:45:18 by tparand #+# #+# */
/* Updated: 2017/11/23 20:41:32 by tparand ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
char *new;
size_t s1_len;
size_t s2_len;
if (!s1)
s1_len = 0;
else
s1_len = ft_strlen(s1);
if (!s2)
s2_len = 0;
else
s2_len = ft_strlen(s2);
new = ft_strnew(s1_len + s2_len);
if (!new)
return (NULL);
if (s1 != NULL)
ft_strcpy(new, s1);
if (s2 != NULL)
ft_strcat(new, s2);
return (new);
}