summaryrefslogtreecommitdiff
path: root/common/collection/collection_stack.h
AgeCommit message (Collapse)AuthorFilesLines
2010-08-19Remove common directoryStephen Gallagher1-325/+0
All files formerly in common are now being built individually out of the ding-libs repository. git clone git://git.fedorahosted.org/git/ding-libs.git
2010-06-28Fixing types in queue and stack interfacesDmitri Pal1-4/+4
2010-03-08Documentation for collection interfaceDmitri Pal1-21/+256
Passed through the interface and changed the comments to comply with the collection interface.
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-30/+39
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-0/+81
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.