Appends multiple strings to a specified wide-character string.
#include <wchar.h>
wchar_t *wcslist (
wchar_t *dst,
const wchar_t *scr1,
...);
(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 the null-terminating wide-character code.