summaryrefslogtreecommitdiff
path: root/common/collection/collection_cnv.c
AgeCommit message (Collapse)AuthorFilesLines
2010-03-15Convert collection to use sized values.Dmitri Pal1-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.
2010-03-08Documentation for collection interfaceDmitri Pal1-1/+1
Passed through the interface and changed the comments to comply with the collection interface.
2009-07-03Clean up warnings in common/Simo Sorce1-37/+38
Fix consts and function declarations
2009-07-02Changing function names for collection API.Dmitri Pal1-755/+757
Patch prepends prefix "col_" to all functions related to collection. This caused some formatiing issues so the alignement was addressed too.
2009-07-02Queue and stack APIs using collection.Dmitri Pal1-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.
2009-07-01Adding INSERT into collection functionality.Dmitri Pal1-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.