Hi all, What is the best practice for handling arrays of structures? Do you define an array of pointers to structures, or just an array of structures? Or does it matter?
In other words this:
ps->dirconn = apr_array_make(p, 10, sizeof(struct dirconn_entry));
or this:
ps->dirconn = apr_array_make(p, 10, sizeof(struct dirconn_entry *));
Regards,
Graham
--
