refactor: replace char_u with char

Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
Dundar Goc
2022-07-19 15:30:57 +02:00
parent 9511faa819
commit 824a729628
35 changed files with 454 additions and 496 deletions

View File

@@ -501,7 +501,7 @@ static int sort_compare(const void *s1, const void *s2)
return STRCMP(*(char **)s1, *(char **)s2);
}
void sort_strings(char_u **files, int count)
void sort_strings(char **files, int count)
{
qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
}