wmemset

Fills an object with the specified number of wide characters.

Library:LibC
Classification:Single UNIX
Service:Characters and Strings

Syntax

  #include <wchar.h> 
   
  wchar_t *wmemset (
     wchar_t   *ws,
     wchar_t    wc,
     size_t     n);
  

Parameters

ws

(IN) Points to the object to fill with wide-characters.

wc

(IN) Specifies the wide character to use in filling the object.

n

(IN) Specifies the number of wide characters to copy.

Return Values

Returns the address of ws.

See Also