utf8tolower

Converts an uppercase character to the corresponding lowercase character.

Library:LibC
Classification:Novell
Service:Characters and Strings

Syntax

  #include <utf8.h> 
   
  utf8_t  *utf8tolower (
     const utf8_t   *string,
     utf8_t         *dest);
  

Parameters

string

(IN) Points to the character to convert to lowercase.

dest

(OUT) Points to the converted character.

Return Values

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

See Also

utf8toupper