Possible Duplicate:
Container Class / Library for C
One of the primary reasons to use C++ over C is the superbly convenient containers that STL provides. However, if I want to write my code in pure C and not have to write all my containers from scratch, what alternative do I have ?
Some of the ones that I have heard of (but never used) are
- Glib
- iMatix Standard Function Library
- disparate elements from the Linux kernel headers (e.g. list)
Any opinions and/or experiences with containers in pure C (Ansi or otherwise) would be much appreciated.