|
FreeNOS
|
Go to the source code of this file.
Namespaces | |
| namespace | Character |
Functions | |
| bool | Character::isDigit (char c) |
| Test for a decimal digit. | |
| bool | Character::isWildcard (char c) |
| Test for a wildcard character. | |
| bool | Character::isLower (char c) |
| Test for a lowercase letter. | |
| bool | Character::isUpper (char c) |
| Test for an uppercase letter. | |
| bool | Character::isAlpha (char c) |
| Test for an alphabetic character. | |
| bool | Character::isAlnum (char c) |
| Test for an alphanumeric character. | |
| bool | Character::isBlank (char c) |
| Test for a blank character. | |
| bool | Character::isWhitespace (char c) |
| Test for a white-space character. | |
| char | Character::lower (char c) |
| Converts the letter c to lowercase. | |
| char | Character::upper (char c) |
| Converts the letter c to uppercase. | |