-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strjoin.c
32 lines (29 loc) · 1.25 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
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thakala <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/17 20:33:39 by thakala #+# #+# */
/* Updated: 2021/12/07 15:13:50 by thakala ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdlib.h>
char *ft_strjoin(char const *s1, char const *s2)
{
char *result;
size_t len1;
size_t len2;
len1 = ft_strlen(s1);
len2 = ft_strlen(s2);
result = (char *)malloc(sizeof(char) * (len1 + len2++ + 1));
if (!result)
return (NULL);
while (len2--)
result[len1 + len2] = s2[len2];
while (len1--)
result[len1] = s1[len1];
return (result);
}