-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathft_strjoin.c
38 lines (34 loc) · 1.44 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
38
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mihykim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/27 07:41:36 by mihykim #+# #+# */
/* Updated: 2020/04/03 22:04:29 by mihykim ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
** - Allocates (with malloc) and returns a new string,
** which is the result of the concatenation of 's1' and 's2'.
** - Returns the new string, or NULL if the allocation fails.
*/
char *ft_strjoin(char const *s1, char const *s2)
{
char *new_s;
size_t len1;
size_t len2;
if (s1 == 0 && s2 == 0)
return (0);
len1 = ft_strlen(s1);
len2 = ft_strlen(s2);
new_s = (char *)malloc(sizeof(char) * (len1 + len2 + 1));
if (new_s == 0)
return (0);
ft_memcpy(new_s, s1, len1);
ft_memcpy(new_s + len1, s2, len2);
new_s[len1 + len2] = 0;
return (new_s);
}