Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

General purpose library for standard C?

Tags:

c

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?

like image 494
Neeladri Vishweswaran Avatar asked Jul 08 '10 18:07

Neeladri Vishweswaran


1 Answers

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.

like image 177
maxwellb Avatar answered Oct 31 '22 02:10

maxwellb