Functions | |
| int | isalnum (int c) |
| int | isalpha (int c) |
| int | iscntrl (int c) |
| int | isdigit (int c) |
| int | isgraph (int c) |
| int | islower (int c) |
| int | isprint (int c) |
| int | ispunct (int c) |
| int | isspace (int c) |
| int | isupper (int c) |
| int | isxdigit (int c) |
| int | toupper (int c) |
| int | tolower (int c) |
|
|
Is a letter or a digit? |
|
|
Is a letter? |
|
|
Is a control character? |
|
|
Is a digit? |
|
|
Is a printable character different from a whitespace? |
|
|
Is lowercase letter? |
|
|
Is a printable character? |
|
|
Is a printable character different from a whitespace and being neither a letter nor a digit |
|
|
Is whitespace? |
|
|
Is uppercase letter? |
|
|
Is hexa digit? |
|
|
Conversion to lowercase |
|
|
Conversion to uppercase |
1.4.4