|
Apache HTTPD
|
Macros | |
| #define | APR_ASCII_BLANK '\040' |
| #define | APR_ASCII_CR '\015' |
| #define | APR_ASCII_LF '\012' |
| #define | APR_ASCII_TAB '\011' |
| #define | APR_OFFSET(p_type, field) ((long) (((char *) (&(((p_type)NULL)->field))) - ((char *) NULL))) |
| #define | APR_ALIGN(size, boundary) (((size) + ((boundary) - 1)) & ~((boundary) - 1)) |
| #define | APR_ALIGN_DEFAULT(size) APR_ALIGN(size, 8) |
| #define | memmove(a, b, c) bcopy(b,a,c) |
Typedefs | |
| typedef int | apr_signum_t |
Functions | |
| int | strcasecmp (const char *a, const char *b) |
| int | strncasecmp (const char *a, const char *b, size_t n) |
| void * | memchr (const void *s, int c, size_t n) |
This is collection of oddballs that didn't fit anywhere else, and might move to more appropriate headers with the release of APR 1.0.
Alignment macros
Definition at line 143 of file apr_general.h.
Default alignment
Definition at line 147 of file apr_general.h.
| #define APR_ASCII_BLANK '\040' |
FALSE TRUE a space
Definition at line 59 of file apr_general.h.
| #define APR_ASCII_CR '\015' |
a carrige return
Definition at line 61 of file apr_general.h.
| #define APR_ASCII_LF '\012' |
a line feed
Definition at line 63 of file apr_general.h.
| #define APR_ASCII_TAB '\011' |
a tab
Definition at line 65 of file apr_general.h.
| #define APR_OFFSET | ( | p_type, | |
| field | |||
| ) | ((long) (((char *) (&(((p_type)NULL)->field))) - ((char *) NULL))) |
Finding offsets of elements within structures. Taken from the X code... they've sweated portability of this stuff so we don't have to. Sigh...
| p_type | pointer type name |
| field | data field within the structure pointed to |
Definition at line 95 of file apr_general.h.
String and memory functions
Definition at line 163 of file apr_general.h.
signal numbers typedef
Definition at line 68 of file apr_general.h.
Definition at line 216 of file apr_strings.c.
Finding offsets of elements within structures.
| s_type | structure type name |
| field | data field within the structure |
Definition at line 248 of file apr_cpystrn.c.