-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_strjoin.c
26 lines (23 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_strjoin.c :+: :+: */
/* +:+ */
/* By: ksmorozo <ksmorozo@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/03 13:44:02 by ksmorozo #+# #+# */
/* Updated: 2021/07/07 12:18:42 by ksmorozo ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdlib.h>
char *ft_strjoin(char const *s1, char const *s2)
{
char *new_str;
new_str = (char *)malloc(ft_strlen(s1) + ft_strlen(s2) + 1);
if (new_str == NULL)
return (NULL);
ft_memcpy(new_str, s1, ft_strlen(s1));
ft_memcpy(new_str + ft_strlen(s1), s2, ft_strlen(s2) + 1);
return (new_str);
}