C Containers library

J

jacob navia

The C Containers library project aims to provide a portable
specification of a container library for the C language.

A sample implementation of the specification is provided, available at
no cost.

Available containers are:

o lists (single/double linked)
o vectors (extensible arrays)
o valarrays (numeric arrays, extensible)
o hash tables
o trees
o string collections
o string lists
o bitstrings
o bloom filters

auxiliary interfaces to heap management are provided.

The full documentation and the source code is available
at no cost from

http://code.google.com/p/ccl

The string list container is the latest addition to the library.

Comments about the source code are welcome.

jacob
 
H

HENRY Eshbaugh

The C Containers library project aims to provide a portable
specification of a container library for the C language.

A sample implementation of the specification is provided, available at
no cost.

Available containers are:

o lists (single/double linked)
o vectors (extensible arrays)
o valarrays (numeric arrays, extensible)
o hash tables
o trees
o string collections
o string lists
o bitstrings
o bloom filters

auxiliary interfaces to heap management are provided.

The full documentation and the source code is available
at no cost from

http://code.google.com/p/ccl

The string list container is the latest addition to the library.

Comments about the source code are welcome.

jacob

Get a bloody coding style. Seriously, your style _SUCKS_. It's
inconsistent. From list.c:


static int DefaultListCompareFunction(const void *left,const void
*right,CompareInfo *ExtraArgs)


static list_element *new_link(List *li,void *data,const char *fname)


static int Clear_nd(List *l)

That's not one, but _THREE_ different coding styles in the space of 50
lines.

My remedy: K&R, underscores.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top