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