up vote 13 down vote favorite
6
share [g+] share [fb]

Just because I'm curious--is there any C analog to the functionality of the STL in C++? I've seen mention of a GTK+ library called glib that a few people consider fills the bill but are there other libraries that would provide STL functionality in C?

link|improve this question

1  
Why? 99% of the time you can convert well written C code to C++ code by just changing the compiler setting. Why not start using C++ code? – davr Oct 14 '08 at 15:42
@davr, I am using C++ code. I was just curious about the possibility of something like the STL (and its data structures) in C. I keep telling people using C++ to stop using arrays--use <vector> instead. So I was curious if there were something safer in C. – Onorio Catenacci Oct 14 '08 at 17:08
feedback

3 Answers

up vote 16 down vote accepted

Yes, glib is a pretty good choice: it includes a lot of utilities for manipulating containers like linked lists, arrays, hash tables, etc. And there is also an object-oriented framework called GObject that you can use to make objects with signals and slots in C (albeit with rather verbose function call names like gobject_set_property, since C doesn't have any syntax for objects). And there is also code for main loops so you can write event-driven programs.

More info from wikipedia: http://en.wikipedia.org/wiki/Glib

Glib was originally part of GTK, but the non-GUI code has been completely factored out so that you can use it in command-line programs: http://library.gnome.org/devel/glib/stable/

link|improve this answer
5  
Omg, I love C.. – Matt Joiner Nov 8 '10 at 8:44
feedback

CLIB

link|improve this answer
The link doesn't seem to work anymore. – Nicol Bolas Jul 17 '11 at 2:17
clibutils.sourceforge.net – Avinash Jul 17 '11 at 16:43
feedback

Well since STL's very nature is based on templates which C doesn't have, it would be difficult to even come close to the STL in C. The best you could hope for is some collection classes which manipulate void* pointers to unknown object.

link|improve this answer
1  
STL is more than just a container library. – Loki Astari Oct 14 '08 at 15:14
1  
I'm aware that STL is more than a container library, which is why I said "The best you could hope for" – James Curran Oct 14 '08 at 15:21
1  
@James Curran: So maybe he's looking for a car, bus, train or boat. – Michael Burr Oct 14 '08 at 17:00
1  
@James Curran: Am I mistaken in thinking that there were STL-like structures in C# before the introduction of generics into that language? What about Java--didn't that have data structures analogous to STL before they added generics to that language? Why would a C STL be such a conceptual stretch? – Onorio Catenacci Oct 14 '08 at 17:19
1  
Prior to the introduction of generic, C# has ArrayList and a few like that, basically, "some collection classes which manipulate void* pointers to unknown object." as I said in my answer. But the STL is far more than that. The affect of LINQ's Enumerable class (in .net) begins to approach STL. – James Curran Oct 15 '08 at 2:02
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.