uni2lwr

Converts the specified Unicode string to lowercase.

Library:LibC
Service:Characters and Strings

Syntax

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

Parameters

dest

(OUT) Points to the converted string.

src

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

Return Values

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

See Also