- isALNUM
-
Returns a boolean indicating whether the C char is an ASCII alphanumeric
character (including underscore) or digit.
- isALPHA
-
Returns a boolean indicating whether the C char is an ASCII alphabetic
character.
- isDIGIT
-
Returns a boolean indicating whether the C char is an ASCII digit.
- isLOWER
-
Returns a boolean indicating whether the C char is a lowercase character.
- isSPACE
-
Returns a boolean indicating whether the C char is whitespace.
- isUPPER
-
Returns a boolean indicating whether the C char is an uppercase character.
- toLOWER
-
Converts the specified character to lowercase.
- toUPPER
-
Converts the specified character to uppercase.
|
|