Any library like STL (vector, map ...) in C?

Possible duplicates:
Container class / library for C
Is there a collection library for the C language?

In C ++, you have a very useful standard template library (STL) that has structures such as vector, map, set ...

If I use plain C, is there any library providing similar structures / functions?

Thank!

+5
source share
1 answer

glib is a great library with many data structures and useful features. It is widely used in the GTK + toolkit.

GLib , , , -, , , ( ), , , N- , ( ), , . .

GLib , , , , , , , , ( ) . , -.

GLib :

  • , GType
  • , GObject

http://library.gnome.org/devel/glib/

+14

All Articles