ft_strcat - kibotrel/42-Libft GitHub Wiki

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

Description :

Appends the string s2 at the end of the string s1.

Return Value :

Returns the string s1 in which s2 was added.

Source code