Skip to main content

toupper

warning

This function starts with a lowercase letter.

Description

This function changes a single character to uppercase.

NameDescription
cThe character to change to uppercase.

Returns

The ASCII value of the character provided, but in uppercase.

Examples

public OnPlayerText(playerid, text[])
{
text[0] = toupper(text[0]);
//This sets the first character to upper case.
return 1;
}
  • tolower: This function changes a single character to lowercase.