utf8upr

Replaces each character of a string with its uppercase equivalent.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

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

Parameters

string

(IN) Points to the string to convert to uppercase characters.

Return Values

Returns the address of the original string.

Remarks

The utf8upr function replaces the string with uppercase characters by invoking the uft8toupper function for each character in the string.

See Also

utf8lwr