wcslist

Appends multiple strings to a specified wide-character string.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

  #include <wchar.h> 
   
  wchar_t  *wcslist (
     wchar_t         *dst,
     const wchar_t   *scr1,
     ...);
  

Parameters

dst

(OUT) Points to the string to which to append a copy of another string.

src1 ... srcn

(IN) Points to the strings to be appended.

Return Values

Returns the value of dst.

Remarks

The last argument in the function must be the null-terminating wide-character code.