У меня проблема с scandir () : страница руководства содержит это как прототип:
int scandir(const char *dir, struct dirent ***namelist,
int (*filter)(const struct dirent *),
int (*compar)(const struct dirent **, const struct dirent **));
Поэтому у меня есть это:
static inline int
RubyCompare(const struct dirent **a,
const struct dirent **b)
{
return(strcmp((*a)->d_name, (*b)->d_name));
}
А вот и звонок:
num = scandir(buf, &entries, NULL, RubyCompare);
Наконец, компилятор говорит следующее:
warning: passing argument 4 of ‘scandir’ from incompatible pointer type
Компилятор gcc-4.3.2 , мои CFLAGS следующие:
-Wall -Wpointer-arith -Wstrict-prototypes -Wunused -Wshadow -std=gnu99
В чем смысл этого предупреждения? Объявление RubyCompare выглядит для меня правильным, и, кроме предупреждения, код работает полностью.