aboutsummaryrefslogtreecommitdiff
path: root/src/strset.c
Commit message (Collapse)AuthorAge
* strset: fix duplicate valuesMax Kellermann2008-09-08
| | | | | Due to a minor typo, the string set had duplicate values, because strset_add() didn't check the base slot properly.
* added string set libraryMax Kellermann2008-09-08
"struct strset" is a hashed string set: you can add strings to this library, and it stores them as a set of unique strings. You can get the size of the set, and you can enumerate through all values. This will be used to replace the linear tagTracker library.