aboutsummaryrefslogtreecommitdiff
path: root/src/ls.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ls.h')
-rw-r--r--src/ls.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/ls.h b/src/ls.h
index f117fa69..b55bb2b1 100644
--- a/src/ls.h
+++ b/src/ls.h
@@ -26,23 +26,25 @@
int lsPlaylists(FILE * fp, char * utf8path);
-int isMp3(char * utf8file, time_t * mtime);
+int isFile(char * utf8file, time_t * mtime);
-int isAac(char * utf8file, time_t * mtime);
+int isDir(char * utf8name, time_t * mtime);
-int isMp4(char * utf8file, time_t * mtime);
+int isPlaylist(char * utf8file);
-int isOgg(char * utf8file, time_t * mtime);
+int isMusic(char * utf8file, time_t * mtime);
-int isFlac(char * utf8file, time_t * mtime);
+int hasWaveSuffix(char * utf8file);
-int isWave(char * utf8file, time_t * mtime);
+int hasMp3Suffix(char * utf8file);
-int isMusic(char * utf8file, time_t * mtime);
+int hasAacSuffix(char * utf8file);
-int isDir(char * utf8name, time_t * mtime);
+int hasMp4Suffix(char * utf8file);
-int isPlaylist(char * utf8file);
+int hasOggSuffix(char * utf8file);
+
+int hasFlacSuffix(char * utf8file);
char * dupAndStripPlaylistSuffix(char * file);