Appends multiple strings to a specified string.
#include <string.h>
char *strlist (
char *dst,
const char *src1,
...);
(OUT) Points to the string to which to append a copy of another string.
(IN) Points to the strings to be appended.
Returns the value of dst.
The last argument in the function must be NULL.