![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| GD library? | thehaapyappy | UNIX for Dummies Questions & Answers | 4 | 05-07-2008 03:44 AM |
| Library won't load | sansan | UNIX for Dummies Questions & Answers | 0 | 11-06-2006 12:42 AM |
| AIX Library Interposer | mrunal | UNIX for Advanced & Expert Users | 2 | 08-07-2006 01:05 AM |
| use gcc and link with a library | AUBERT | High Level Programming | 1 | 06-21-2004 09:20 AM |
| library files | jalburger | High Level Programming | 1 | 04-13-2004 01:19 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
What features?
For hashing how about the GP hash function library? http://www.partow.net/programming/hashfunctions/#top Another choice is to use perlcall to create a callback to access perl library calls: http://www.xav.com/perl/lib/Pod/perlcall.html |
|
|||
|
For sorting arrays in C, you can use qsort, see 'man 3 qsort'.
If you need abstract streaming types, investigate libSDL, it has neat things they call SDL_RWops. They're structures full of function pointers that can be populated by any functions you want. SDL comes with ones for reading from files and memory, and I've written an extension library, SDL_rwlib, that includes things like TCP/IP sockets, UNIX fd's, gz streams, bzip2 streams, temp files and temp memory spaces, ring buffers, and an SDL_rwprintf. What else do you need? If you're looking for a total replacement of C++ STL, you're out of luck, since the closest thing C has to templates is macros... Last edited by Corona688; 07-05-2006 at 08:18 AM. |
|
||||
|
I've found something interesting for hash: http://www.cl.cam.ac.uk/~cwc22/hashtable/
|
||||
| Google The UNIX and Linux Forums |