12

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
  • 34,556
  • 31
  • 99
  • 140

2 Answers2

10

Check out the Gnome project's GLib.

John Carter
  • 53,924
  • 26
  • 111
  • 144
qrdl
  • 34,062
  • 14
  • 56
  • 86
2

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

Nick Johnson
  • 100,655
  • 16
  • 128
  • 198