Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mature standard library for C [closed]

I'm looking for a library for C that gives me at least some of the things I really miss from C++ and the STL/Boost. (I have to use C, so please no "use C++" posts)

I need

  1. dynamic strings (that grow and shrink automatically)
  2. some sort of list (std::vector replacement)
  3. something like stringstream (for type conversations & buffers)

Furthermore, it has to have a mature and Open Source implementation and it has to be platform independant (Windows, Linux and Mac are required to be supported).

Any recommendations?

like image 655
Milan Avatar asked Mar 29 '09 21:03

Milan


1 Answers

What about the GLib from GTK?

like image 154
Manuel Avatar answered Oct 08 '22 07:10

Manuel