7

Is there any widely known general purpose library for standard C. I'm thinking of something like what Boost is for C++.

I found the C POSIX library... any other?

Neeladri Vishweswaran
  • 1,695
  • 5
  • 22
  • 40
  • possible duplicate of [Good STL-like library for C.](http://stackoverflow.com/questions/2540/good-stl-like-library-for-c) – Paul R Jul 08 '10 at 20:57

2 Answers2

10

GLib, GObject, and GTK+ (links to Wikipedia) are good places to start. (GLib, GObject, and GTK are part of the GTK+ Project).

For numerical functions and algebra, there are the GNU Scientific Library, and implementations of CLAPACK and CBLAS (GSL includes CBLAS).

Please see also Wikipedia's list of numerical libraries. If you find more, consider contributing to the Wiki.

Cascabel
  • 479,068
  • 72
  • 370
  • 318
maxwellb
  • 13,366
  • 2
  • 25
  • 35
  • @Jefromi: thanks for the edits. @Paul R: looks like the "related question link train" is as follows: http://stackoverflow.com/questions/2540 http://stackoverflow.com/questions/305611 http://stackoverflow.com/questions/649649 http://stackoverflow.com/questions/668501 – maxwellb Jul 09 '10 at 20:56
3

I have used GLib which provides almost every functionality of standard c libs.

Praveen S
  • 10,355
  • 2
  • 43
  • 69