note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
tolower
warning
This function starts with a lowercase letter.
Description
This function changes a single character to lowercase.
Name | Description |
---|---|
c | The character to change to lowercase. |
Returns
The ASCII value of the character provided as lowercase.
Examples
public OnPlayerText(playerid, text[])
{
text[0] = tolower(text[0]);
//This sets the first character to lowercase.
return 1;
}
Related Functions
- toupper: This function changes a single character to uppercase.