Launcher: autocompletion alphabetical sort from PeVe

This commit is contained in:
Radek Tříška
2010-08-28 23:08:29 +02:00
committed by Philippe Pepiot
parent 36aa4ce43a
commit 839ebeaf2b
3 changed files with 30 additions and 11 deletions

View File

@@ -356,3 +356,10 @@ patht(char *path)
return ret;
}
int
qsort_string_compare (const void * a, const void * b)
{
return (strcmp(*(char **)a, *(char **)b));
}