utf8lwr

Replaces each character of a string with its lowercase equivalent.

Library:LibC
Service:Characters and Strings

Syntax

  #include <utf8.h>
  
  utf8_t *utf8lwr (
     utf8_t  *string);
  

Parameters

string

(IN) Points to the string to be converted to lowercase characters.

Return Values

Returns the address of the converted string.

Remarks

The utf8lwr function replaces the string with lowercase characters by invoking the uft8tolower function for each character in the string.

See Also

utf8upr