-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strjoin.c
executable file
·24 lines (21 loc) · 1.08 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rlechapt <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/07 17:38:34 by rlechapt #+# #+# */
/* Updated: 2014/11/13 20:00:32 by rlechapt ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
char *s3;
if ((s3 = ft_strnew(ft_strlen(s1) + ft_strlen(s2))) == NULL)
return (NULL);
ft_strcpy(s3, s1);
ft_strcat(s3, s2);
return (s3);
}