-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strjoin.c
31 lines (28 loc) · 1.16 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ewilliam <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/02 12:53:08 by ewilliam #+# #+# */
/* Updated: 2016/12/05 21:51:26 by ewilliam ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
char *ptr;
char *optr;
if (s1 && s2)
{
ptr = malloc(sizeof(s1) * (ft_strlen(s1) + ft_strlen(s2) + 3));
if (ptr)
{
optr = ptr;
ft_stpcpy((ft_stpcpy(ptr, s1)), s2);
return (optr);
}
}
return (NULL);
}