toupper — Makes a string uppercase
toupper (
void)
Returns string with all alphabetic characters converted to uppercase.
tolower ("aBcDeF") -> "ABCDEF" toupper ("abcáäöč") -> "ABCáäöč"