Defines | |
#define | FALSE 0 |
#define | TRUE (!FALSE) |
#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_OFFSETOF(s_type, field) APR_OFFSET(s_type*,field) |
#define | APR_XtOffset APR_OFFSET |
#define | APR_XtOffsetOf APR_OFFSETOF |
#define | APR_ALIGN(size, boundary) (((size) + ((boundary) - 1)) & ~((boundary) - 1)) |
#define | APR_ALIGN_DEFAULT(size) APR_ALIGN(size, 8) |
#define | APR_STRINGIFY(n) APR_STRINGIFY_HELPER(n) |
#define | APR_STRINGIFY_HELPER(n) #n |
Typedefs | |
typedef int | apr_signum_t |
|
Alignment macros |
|
Default alignment |
|
a space |
|
a carrige return |
|
a line feed |
|
a tab |
|
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...
|
|
Finding offsets of elements within structures.
|
|
Properly quote a value as a string in the C preprocessor |
|
Helper macro for APR_STRINGIFY |
|
|
|
|
|
FALSE |
|
TRUE |
|
signal numbers typedef |