Case insensitive sorting

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4926 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-07-23 15:13:18 +00:00
parent c051eda028
commit 0112fc8b0b

View file

@ -70,7 +70,7 @@ static int compare(const void* p1, const void* p2)
char *s1 = *(char **)p1;
char *s2 = *(char **)p2;
return rb->strcmp(s2, s1);
return rb->strcasecmp(s2, s1);
}
static void sort_buffer(void)