aboutsummaryrefslogtreecommitdiff
path: root/tags.c
AgeCommit message (Collapse)Author
2009-11-09libify: Move library sources down into lib directory.Carl Worth
A "make" invocation still works from the top-level, but not from down inside the lib directory yet.
2009-10-26tags: Replace sort() and reset() with prepare_iterator().Carl Worth
The previous functions were always called together, so we might as well just have one function for this. Also, the reset() name was poor, and prepare_iterator() is much more descriptive.
2009-10-26tags: Re-implement tags iterator to avoid having C++ in the interfaceCarl Worth
We want to be able to iterate over tags stored in various ways, so the previous TermIterator-based tags object just wasn't general enough. The new interface is nice and simple, and involves only C datatypes.