From 2b8040b42524dad68ea85c45a4be25909a03eb5c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 8 Sep 2008 11:46:04 +0200 Subject: added string set library "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. --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 30408288c..5a5439bfc 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -92,6 +92,7 @@ mpd_headers = \ tag_save.h \ tagTracker.h \ utf8.h \ + strset.h \ utils.h \ volume.h \ ioops.h \ @@ -158,6 +159,7 @@ mpd_SOURCES = \ tag_print.c \ tag_save.c \ tagTracker.c \ + strset.c \ utils.c \ volume.c \ utf8.c \ -- cgit v1.2.3