|
Previous: utility.library/ToLower |
TOC: Table of Contents |
Index: All Documents |
Next: utility.library/UDivMod32 |
| Title: |
| ToUpper -- convert a character to upper case. (V37) |
| Synopsis: |
| char = ToUpper(char); D0 D0 UBYTE ToUpper(UBYTE); |
| Function: |
| Converts a character to upper case, handling international character sets. |
| Parameters: |
| char - character to be converted. |
| Results: |
| char - upper case version of input character. |
| Please note: |
| Whenever locale.library is installed in a system, this function is replaced by language-specific code. This means that depending on which language the user has currently selected, a given character may return different results when passed to this function. This fact must be taken into consideration when using this function. |
| Related topics: |
| ToUpper(), locale.library/ConvToLower() |