summaryrefslogtreecommitdiffstats
path: root/collection/collection_cnv.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixing headersDmitri Pal2013-01-241-2/+1
| | | | | | | Move GNU_SOUCE definition to configure.ac Change all headers to use config.h. Move config.h to the top. Remove errno.h if it is not needed.
* Convert collection to use sized values.Dmitri Pal2010-03-151-41/+45
| | | | | | | This patch replaces int with int32_t, unsigned with uint32_t, long with int64_t, unsigned long with uint64_t as values that collection can store and hold.
* Documentation for collection interfaceDmitri Pal2010-03-081-1/+1
| | | | | Passed through the interface and changed the comments to comply with the collection interface.
* Clean up warnings in common/Simo Sorce2009-07-031-37/+38
| | | | Fix consts and function declarations
* Changing function names for collection API.Dmitri Pal2009-07-021-755/+757
| | | | | | | Patch prepends prefix "col_" to all functions related to collection. This caused some formatiing issues so the alignement was addressed too.
* Queue and stack APIs using collection.Dmitri Pal2009-07-021-1/+1
| | | | | | | Patch adds two interfaces for stack and queue using collection as underlaying implementation. It also fixes a bug in the insterion code - the unsigned properties were created as long.
* Adding INSERT into collection functionality.Dmitri Pal2009-07-011-0/+1266
Add was always insterting at the end of the collection. With this change one can control where the item is inserted and deal with the duplicates too. Also one now can extract items from collection using absolute and relative disposition. Using more advanced hashing function.