summaryrefslogtreecommitdiff
path: root/common/collection/collection_stack.c
AgeCommit message (Collapse)AuthorFilesLines
2009-07-03Clean up warnings in common/Simo Sorce1-1/+1
Fix consts and function declarations
2009-07-02Changing function names for collection API.Dmitri Pal1-86/+94
Patch prepends prefix "col_" to all functions related to collection. This caused some formatiing issues so the alignement was addressed too.
2009-07-02New deletion unit test.Dmitri Pal1-1/+1
Adds a unit test for deletion and re-adding of the elements to collection. Small syntactical fix in "stack".
2009-07-02Queue and stack APIs using collection.Dmitri Pal1-0/+350
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.