-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strjoin.c
executable file
·24 lines (21 loc) · 1.09 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: ioleksiu <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/23 17:59:21 by ioleksiu #+# #+# */
/* Updated: 2016/12/28 18:50:41 by ioleksiu ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
char *p;
if (!(s1 && s2))
return (NULL);
if ((p = ft_strnew(ft_strlen(s1) + ft_strlen(s2))))
ft_strcat(ft_strcat(p, s1), s2);
return (p);
}