|
Apache Portable Runtime
|
Macros | |
| #define | apr_isalnum(c) |
| #define | apr_isalpha(c) |
| #define | apr_iscntrl(c) |
| #define | apr_isdigit(c) |
| #define | apr_isgraph(c) |
| #define | apr_islower(c) |
| #define | apr_isascii(c) |
| #define | apr_isprint(c) |
| #define | apr_ispunct(c) |
| #define | apr_isspace(c) |
| #define | apr_isupper(c) |
| #define | apr_isxdigit(c) |
| #define | apr_tolower(c) |
| #define | apr_toupper(c) |
These macros allow correct support of 8-bit characters on systems which support 8-bit characters. Pretty dumb how the cast is required, but that's legacy libc for ya. These new macros do not support EOF like the standard macros do. Tough.
| #define apr_isalnum | ( | c | ) |
| #define apr_isalpha | ( | c | ) |
| #define apr_isascii | ( | c | ) |
| #define apr_iscntrl | ( | c | ) |
| #define apr_isdigit | ( | c | ) |
| #define apr_isgraph | ( | c | ) |
| #define apr_islower | ( | c | ) |
| #define apr_isprint | ( | c | ) |
| #define apr_ispunct | ( | c | ) |
| #define apr_isspace | ( | c | ) |
| #define apr_isupper | ( | c | ) |
| #define apr_isxdigit | ( | c | ) |
| #define apr_tolower | ( | c | ) |
| #define apr_toupper | ( | c | ) |