summaryrefslogtreecommitdiffstats
path: root/common/collection/collection_cnv.c
Commit message (Collapse)AuthorAgeFilesLines
* 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.