Reputation:
What are some common general purpose library as Boost is to C++ but for C? It should be a cross-platform library and include collections such as trees, linked-lists, queues, etc... What are the advantages/disadvantages to those libraries?
Upvotes: 5
Views: 663
Reputation: 13093
The Apache portable runtime project
is good. Covers basic datastructures and is very good at network and IO abstraction. The later is a magnitude better then glib.
Unfortunately most document links on the apache websites are broken at the moment :-( But this one works work http://apr.apache.org/docs/apr/1.4/modules.html
Upvotes: 0
Reputation: 3425
glib
is pretty nice because:
Upvotes: 8