|
| static int | isascii (int c) |
| | Returns true if c is a 7-bit ASCII character, false otherwise.
|
| static int | isdigit (int c) |
| | Returns true if c is an ASCII digit character, false otherwise.
|
| static int | islower (int c) |
| | Returns true if c is an ASCII lowercase character, false otherwise.
|
| static int | isprint (int c) |
| | Returns true if c is an ASCII printable character, false otherwise.
|
| static int | isspace (int c) |
| | Returns true if c is an ASCII whitespace character, false otherwise.
|
| static int | isupper (int c) |
| | Returns true if c is an ASCII uppercase character, false otherwise.
|
| static int | isalpha (int c) |
| | Returns true if c is an ASCII character that is part of the Latin alphabet, false otherwise.
|
| static int | isxdigit (int c) |
| | Returns true if c is an ASCII hexadecimal digit (0-f), false otherwise.
|
| static int | tolower (int c) |
| | Converts an uppercase ASCII character to a lowercase one, or returns the original value if c is not an uppercase character.
|
| static int | toupper (int c) |
| | Converts a lowercase ASCII character to a uppercase one, or returns the original value if c is not an lowercase character.
|
ASCII-only definition of C standard C functions.
These functions are explicitly not locale aware. Apart from isascii, their return values are unspecified for non-ASCII character sets. Most embedded software does not need to be locale aware and talks to some back end that handles localisation. If you require support for Unicode or other non-ASCII character sets, do not use this file.
Definition in file ctype.h.