diff options
Diffstat (limited to 'src/ls.c')
-rw-r--r-- | src/ls.c | 30 |
1 files changed, 0 insertions, 30 deletions
@@ -155,58 +155,28 @@ int hasWaveSuffix(char * utf8file) { return hasSuffix(utf8file,"wav"); } -int isWave(char * utf8file, time_t * mtime) { - if(isFile(utf8file,mtime)) return hasWaveSuffix(utf8file); - return 0; -} - int hasFlacSuffix(char * utf8file) { return hasSuffix(utf8file,"flac"); } -int isFlac(char * utf8file, time_t * mtime) { - if(isFile(utf8file,mtime)) return hasFlacSuffix(utf8file); - return 0; -} - int hasOggSuffix(char * utf8file) { return hasSuffix(utf8file,"ogg"); } -int isOgg(char * utf8file, time_t * mtime) { - if(isFile(utf8file,mtime)) return hasOggSuffix(utf8file); - return 0; -} - int hasAacSuffix(char * utf8file) { return hasSuffix(utf8file,"aac"); } -int isAac(char * utf8file, time_t * mtime) { - if(isFile(utf8file,mtime)) return hasAacSuffix(utf8file); - return 0; -} - int hasMp4Suffix(char * utf8file) { if(hasSuffix(utf8file,"mp4")) return 1; if(hasSuffix(utf8file,"m4a")) return 1; return 0; } -int isMp4(char * utf8file, time_t * mtime) { - if(isFile(utf8file,mtime)) return hasMp4Suffix(utf8file); - return 0; -} - int hasMp3Suffix(char * utf8file) { return hasSuffix(utf8file,"mp3"); } -int isMp3(char * utf8file, time_t * mtime) { - if(isFile(utf8file,mtime)) return hasMp3Suffix(utf8file); - return 0; -} - int isDir(char * utf8name, time_t * mtime) { struct stat st; |