-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strjoin.c
30 lines (27 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
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: msubtil- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/12 15:31:45 by msubtil- #+# #+# */
/* Updated: 2022/04/25 17:56:54 by msubtil- ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strjoin(char const *s1, char const *s2)
{
char *res;
size_t len;
len = ft_strlen(s1) + ft_strlen(s2);
res = (char *) malloc(sizeof(char) * (len + 1));
if (res == (NULLPTR))
return (NULLPTR);
while (*s1)
*res++ = *s1++;
while (*s2)
*res++ = *s2++;
*res = '\0';
return (res - len);
}