Home  /  Autodocs  /  utility.library

NAME

ToLower
convert a character to lower case. (V37)

SYNOPSIS

char = ToLower(char);
D0 D0

UBYTE ToLower(UBYTE);

FUNCTION

Converts a character to lower case, handling international character sets.

INPUTS

char
character to be converted.

RESULT

char
lower case version of the input character.

NOTES

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.

SEE ALSO

ToUpper(), locale.library/ConvToLower()