-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strjoin.c
41 lines (38 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
33
34
35
36
37
38
39
40
41
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: amait-ou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/01 22:24:19 by amait-ou #+# #+# */
/* Updated: 2023/01/30 23:41:26 by amait-ou ### ########.fr */
/* */
/* ************************************************************************** */
#include "./superlib.h"
char *ft_strjoin(char const *s1, char const *s2)
{
int i;
int j;
char *p;
p = malloc((string_len((char *)s1) + string_len((char *)s2)) + 1);
if (!p)
return ((void *)0);
i = 0;
j = 0;
while (s1 && s1[i])
{
p[i] = s1[i];
++i;
}
while (s2[j])
{
p[i] = s2[j];
++j;
++i;
}
p[i] = '\0';
free((char *)s1);
free((char *)s2);
return (p);
}