wcslwr

Converts a wide-character string to its lowercase equivalent.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

  #include <wchar.h>
   
  wchar_t  *wcslwr (
     wchar_t   *ws);
  

Parameters

ws

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

Return Values

Returns a pointer to the converted string.

Remarks

The wcslwr function replaces str with lowercase characters, by invoking the towlower function for each character in the string.

See Also

wcsupr