mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 18:47:39 -04:00
Case insensitive sorting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4926 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c051eda028
commit
0112fc8b0b
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ static int compare(const void* p1, const void* p2)
|
||||||
char *s1 = *(char **)p1;
|
char *s1 = *(char **)p1;
|
||||||
char *s2 = *(char **)p2;
|
char *s2 = *(char **)p2;
|
||||||
|
|
||||||
return rb->strcmp(s2, s1);
|
return rb->strcasecmp(s2, s1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sort_buffer(void)
|
static void sort_buffer(void)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue