*Added Quicksort to the MP3 List.

This commit is contained in:
dimok321 2009-05-13 19:01:05 +00:00
parent 9ee6729e7f
commit f493f3c2f5

View File

@ -103,6 +103,12 @@ return 0;
} }
*/ */
s32 filenamescmp(const void *a, const void *b)
{
/* Compare strings */
return stricmp((char *)a, (char *)b);
}
int GetFiles(char * mp3path) int GetFiles(char * mp3path)
{ {
int countmp3 = 0; int countmp3 = 0;
@ -127,5 +133,8 @@ if (dir == NULL) //If empty
} }
} }
} }
qsort(mp3files, countmp3, sizeof(char[30]), filenamescmp);
return countmp3; return countmp3;
} }