|
FreeNOS
|
#include <Character.h>Go to the source code of this file.
Macros | |
| #define | isdigit(c) Character::isDigit(c) |
| Test for a decimal digit. More... | |
| #define | islower(c) Character::isLower(c) |
| Test for a lowercase letter. More... | |
| #define | isupper(c) Character::isUpper(c) |
| Test for an uppercase letter. More... | |
| #define | isalpha(c) Character::isAlpha(c) |
| Test for an alphabetic character. More... | |
| #define | isalnum(c) Character::isAlnum(c) |
| Test for an alphanumeric character. More... | |
| #define | isblank(c) Character::isBlank(c) |
| Test for a blank character. More... | |
| #define | isspace(c) Character::isSpace(c) |
| Test for a white-space character. More... | |
| #define | tolower(c) Character::lower(c) |
| Converts the letter c to lowercase. More... | |
| #define | toupper(c) Character::upper(c) |
| Converts the letter c to uppercase. More... | |
1.8.17