The members of this struct are as follows:
typedef struct _ec_ptr_array {
u_int32_t sizeof_ec_ptr_array;
int size;
int allocd;
void **items;
ec_ptr_array_free_func free_func;
#define EC_PTR_ARRAY_DEFAULT_PREALLOC 16
void *static_items[EC_PTR_ARRAY_DEFAULT_PREALLOC];
} ec_ptr_array;
To use this struct, include the file misc/ec_ptr_array.h
.
Was this page helpful?