41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_strjoin.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/10/03 19:39:00 by aortigos #+# #+# */
|
|
/* Updated: 2023/10/03 19:47:34 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
char *ft_strjoin(char const *s1, char const *s2)
|
|
{
|
|
char *x;
|
|
size_t c1;
|
|
size_t c2;
|
|
size_t i;
|
|
|
|
i = 0;
|
|
c1 = 0;
|
|
c2 = 0;
|
|
if (s1 == NULL || s2 == NULL)
|
|
return (NULL);
|
|
x = (char *)malloc(sizeof(char) * ft_strlen(s1) + ft_strlen(s2) + 1);
|
|
if (!(x))
|
|
return (NULL);
|
|
while (c1 != ft_strlen(s1))
|
|
{
|
|
x[i++] = s1[c1++];
|
|
}
|
|
while (c2 != ft_strlen(s2))
|
|
{
|
|
x[i++] = s2[c2++];
|
|
}
|
|
x[i] = '\0';
|
|
return (x);
|
|
}
|