0
這是我比較功能......正確使用scandir()進行排序?
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);
}
上午錯誤:沒有東西結構或聯合 請求成員「d_name」你是怎麼在這裏?
試試看它應該工作 –