summaryrefslogtreecommitdiff
path: root/apps/metadata/mp3.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/metadata/mp3.c')
-rw-r--r--apps/metadata/mp3.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/apps/metadata/mp3.c b/apps/metadata/mp3.c
index 20596b1961..21cdeff3fc 100644
--- a/apps/metadata/mp3.c
+++ b/apps/metadata/mp3.c
@@ -94,18 +94,6 @@ char* id3_get_num_genre(unsigned int genre_num)
94 return NULL; 94 return NULL;
95} 95}
96 96
97/* True if the string is from the "genres" array */
98bool id3_is_genre_string(const char *string)
99{
100 unsigned int i;
101
102 for(i=0; i < ARRAYLEN(genres); i++)
103 if(genres[i] == string)
104 return true;
105
106 return false;
107}
108
109/* 97/*
110 HOW TO ADD ADDITIONAL ID3 VERSION 2 TAGS 98 HOW TO ADD ADDITIONAL ID3 VERSION 2 TAGS
111 Code and comments by Thomas Paul Diffenbach 99 Code and comments by Thomas Paul Diffenbach