FreeNOS
|
Functions | |
bool | isDigit (char c) |
Test for a decimal digit. More... | |
bool | isWildcard (char c) |
Test for a wildcard character. More... | |
bool | isLower (char c) |
Test for a lowercase letter. More... | |
bool | isUpper (char c) |
Test for an uppercase letter. More... | |
bool | isAlpha (char c) |
Test for an alphabetic character. More... | |
bool | isAlnum (char c) |
Test for an alphanumeric character. More... | |
bool | isBlank (char c) |
Test for a blank character. More... | |
bool | isWhitespace (char c) |
Test for a white-space character. More... | |
char | lower (char c) |
Converts the letter c to lowercase. More... | |
char | upper (char c) |
Converts the letter c to uppercase. More... | |
|
inline |
Test for an alphanumeric character.
c | Input character. |
Definition at line 98 of file Character.h.
|
inline |
Test for an alphabetic character.
c | Input character. |
Definition at line 86 of file Character.h.
References isLower(), and isUpper().
Referenced by isAlnum(), and String::toLong().
|
inline |
Test for a blank character.
c | Input character. |
Definition at line 110 of file Character.h.
Referenced by isWhitespace().
|
inline |
Test for a decimal digit.
c | Input character. |
Definition at line 38 of file Character.h.
Referenced by isAlnum(), strtol(), and String::toLong().
|
inline |
Test for a lowercase letter.
c | Input character. |
Definition at line 62 of file Character.h.
Referenced by isAlpha().
|
inline |
Test for an uppercase letter.
c | Input character. |
Definition at line 74 of file Character.h.
Referenced by isAlpha(), and String::toLong().
|
inline |
Test for a white-space character.
c | Input character. |
Definition at line 122 of file Character.h.
References isBlank().
Referenced by String::toLong(), and String::trim().
|
inline |
Test for a wildcard character.
c | Input character. |
Definition at line 50 of file Character.h.
Referenced by String::match().
|
inline |
Converts the letter c to lowercase.
c | The letter to convert. |
Definition at line 135 of file Character.h.
Referenced by String::compareTo(), and String::lower().
|
inline |
Converts the letter c to uppercase.
c | The letter to convert. |
Definition at line 147 of file Character.h.
Referenced by String::upper().