aboutsummaryrefslogtreecommitdiffstats
path: root/src/tagTracker.h
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-11-11 13:15:41 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-11-11 13:15:41 +0000
commitb9272fa95a2db87d499fde531124a977f62e194e (patch)
tree32d3f0e6b43c119ced5cb8d051fb0abd97b2883b /src/tagTracker.h
parent1d123cd496bd9c01586dcb8d75f48fc3c5e74532 (diff)
downloadmpd-b9272fa95a2db87d499fde531124a977f62e194e.tar.gz
mpd-b9272fa95a2db87d499fde531124a977f62e194e.tar.xz
mpd-b9272fa95a2db87d499fde531124a977f62e194e.zip
ok, tagtracker now tracks title, this has the disadvantage of needing to sort
the title tracker list, and it wastes more memory. But it makes implementing list command elegant, since we've just visit tags, then print out the visited tags in tag tracker (which has the benefit of making sure everything is in sorted order) git-svn-id: https://svn.musicpd.org/mpd/trunk@2608 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/tagTracker.h')
-rw-r--r--src/tagTracker.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tagTracker.h b/src/tagTracker.h
index 7c9740c64..60713b0da 100644
--- a/src/tagTracker.h
+++ b/src/tagTracker.h
@@ -17,4 +17,8 @@ void resetVisitedFlagsInTagTracker(int type);
int wasVisitedInTagTracker(int type, char * str);
+void visitInTagTracker(int type, char * str);
+
+void printVisitedInTagTracker(FILE * fp, int type);
+
#endif