From 795a1e930b6d3d606546689e991149b9ad583066 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Wed, 31 Mar 2004 22:32:44 +0000 Subject: lets cleanup some file type detection and not call stat() so much git-svn-id: https://svn.musicpd.org/mpd/trunk@575 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/ls.h | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'src/ls.h') 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); -- cgit v1.2.3