towlower

Converts an uppercase wide-character code to the corresponding lowercase wide-character code.

Library:LibC
Classification:ANSI
Service:Characters and Strings

Syntax

  #include <wctype.h> 
   
  wint_t  towlower (
     wint_t   wc);
  

Parameters

wc

(IN) Specifies the wide-character code to convert to lowercase.

Return Values

Returns the corresponding lowercase wide-character code when the argument is an uppercase wide-character code. Otherwise, the original character code is returned.

See Also