ft_strncat - kibotrel/42-Libft GitHub Wiki
char *ft_strncat(char *s1, const char *s2, size_t n)
Description :
Appends n
characters of the string s2
at the end of the string s1
.
Return Value :
Returns the string s1
after concatenation followed by \0
.