c-libraries

Which library to use for C data structures with GCC

Hello all, I'm about to start a new project in C. I'm currently investigating a library for C data structures. I've found plenty of them. But which one would you recommend? I'm currently considering to use gdsl or glib . The important properties of a library for me is: Robustness and reliability of the code. Documentation. Readabilit...

Variant datatype library for C

Is there a decent open-source C library for storing and manipulating dynamically-typed variables (a.k.a. variants)? I'm primarily interested in atomic values (int8, int16, int32, uint, strings, blobs, etc.), while JSON-style arrays and objects as well as custom objects would also be nice. A major case where such a library would be usef...