ft_strjoin - kibotrel/42-Libft GitHub Wiki

char    *ft_strjoin(char const *s1, char const *s2)

Description :

Allocates a new string where s2 is appened at the end of s1.

Return Value :

Returns the new allocated string followed by a \0.

Source code