这是我的比较功能...
int nameSort(const struct dirent** file1, const struct dirent** file2){
char* a = *file1 -> d_name;
char* b = *file2 -> d_name;
//printf("comparing %s AND %s\n", a, b);
return strcasecmp(a,b);
}
am error:请求成员'd_name',而不是结构或联合 这有什么不对?