unin2lwr

Converts the specified Unicode string to lowercase.

Library:LibC
Service:Characters and Strings

Syntax

  #include <unilib.h> 
   
  unicode_t *unin2lwr (
     unicode_t         *dest,
     const unicode_t   *src,
     size_t             destLen );
  

Parameters

dest

(OUT) Points to the converted string.

src

(IN) Points to the uppercase string to change to lowercase.

destLen

(IN/OUT) Points to the maximum number of Unicode characters that the destination string can hold when the function is called. When the function returns, it contains the number of Unicode characters in the converted string.

Return Values

Returns the lowercase string, if src pointed to an uppercase string.

See Also