Daniel Näslund wrote: > > > Just a quick. > > > [ ] Yes, using APR forces you to a lot of boilerplate. > > > > You mean a lot of opaque APIs? With a (very) quick glance, I don't see any > > unusual use of APR. > > Ok. But could someone atleast tell me where to find a linked list in APR?
APR doesn't provide a simple linked list, although, now I look, I see that there is a "ring" - a circular, doubly-linked list. We normally just use the "array" and "hash" containers. There is also a "table" which seems to be a cross between array and hash table. See <http://dev.ariel-networks.com/apr/apr-tutorial/html/apr-tutorial-19.html> for an introduction to the four main container APIs. - Julian