vote up 7 vote down star
3

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?

flag

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

3 Answers

vote up 9 vote down check

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|flag
vote up 1 vote down

What part of the functionality do you want?

link|flag
Vlion, as I said, I'm mostly asking from curiosity. I don't write C code any more but I was curious if there were something analogous to the STL in C. – Onorio Catenacci Oct 14 '08 at 17:11
Good remark: you would need replacement for collections, iterators and algorithms. – xtofl Jan 6 '09 at 10:06
vote up 0 vote down

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|flag
@James Curran, I was asking for an analog to the STL. I realize that templates are a C++ feature. – Onorio Catenacci Oct 14 '08 at 14:57
STL is more than just a container library. – Martin York Oct 14 '08 at 15:14
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
@Onorio: Templates are at the very essence of the STL. Your question is much like say "I need something like an airplane, but don't worry about the flying part" – James Curran Oct 14 '08 at 15:23
@James Curran: So maybe he's looking for a car, bus, train or boat. – Michael Burr Oct 14 '08 at 17:00
show 3 more comments

Your Answer

Get an OpenID
or

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