aboutsummaryrefslogtreecommitdiffstats
path: root/src/strset.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-12-02replaced mpd_malloc by G_GNUC_MALLOCThomas Jansen1-1/+1
We want to remove gcc.h eventually. This takes care of all the G_GNUC_MALLOC macros.
2008-09-08strset: fix duplicate valuesMax Kellermann1-1/+1
Due to a minor typo, the string set had duplicate values, because strset_add() didn't check the base slot properly.
2008-09-08added string set libraryMax Kellermann1-0/+144
"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.