Neeladri Vishweswaran
Neeladri Vishweswaran

Reputation: 1763

General purpose library for standard 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?

Upvotes: 6

Views: 1485

Answers (2)

maxwellb
maxwellb

Reputation: 13964

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.

Upvotes: 9

Praveen S
Praveen S

Reputation: 10393

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

Upvotes: 2

Related Questions