11

Possible Duplicate:
Good STL-like library for C
Are there any open source C libraries with common data structures?

The Apache Commons project has always struck me as being the library of all things that were forgotten in the Java language. Nowadays I almost always include it by default as a dependency on all new projects.

Is there an equivalent of such an essential, must-have, have-it-all library for the C programming language? (And I really mean C---not C++).

Community
  • 1
  • 1
lindelof
  • 33,308
  • 31
  • 92
  • 136

2 Answers2

9

Check out the Gnome project's GLib.

John Carter
  • 52,342
  • 26
  • 107
  • 142
qrdl
  • 32,678
  • 14
  • 55
  • 84
2

What you're looking for is the Apache Portable Runtime.

Nick Johnson
  • 99,939
  • 16
  • 127
  • 196