struct apr_array_header_t
Overview
An opaque array type Moreā¦
#include <apr_tables.h> struct apr_array_header_t { // fields apr_pool_t* pool; int elt_size; int nelts; int nalloc; char* elts; };
Detailed Documentation
An opaque array type
Fields
apr_pool_t* pool
The pool the array is allocated out of
int elt_size
The amount of memory allocated for each element of the array
int nelts
The number of active elements in the array
int nalloc
The number of elements allocated in the array
char* elts
The elements in the array