wcsupr

Replaces each character of a wide-character string with its uppercase equivalent.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

  #include <wchar.h> 
   
  wchar_t  *wcsupr (
     wchar_t   *ws1);
  

Parameters

ws1

(IN) Points to the string to convert to uppercase characters.

Return Values

Returns the address of the original string.

Remarks

The wcsupr function replaces the string ws1 with uppercase characters by invoking the towupper function for each character in the string.

See Also

wcslwr