Definition:
typedef struct pool pool;
typedef struct pool ap_pool;
struct pool opaque-structure
Usage example:
pool *p;
char *foo;
foo = ap_pstrcat(p, "string 1", "string 2", null);
The pool type is another name for the
ap_pool structure (q.v.). The
latter is the preferred type name, to avoid name collisions
with third-party library symbols. However, due to
historical reasons, a lot of legacy usages of the
pool type name exist.
Previous: piped_log
Next: regex_t
Table of Contents
(Routines,
Structures,
Data Cells,
Constants)