| 287 | typedef enum {exFAT_FOLLOW_CLUSTER, exFAT_NEXT_FREE_CLUSTER, exFAT_NEXT_CLUSTER} exfat_method_t; |
| 288 | |
| 289 | static int is_EOC(const unsigned int cluster) |
| 290 | { |
| 291 | return(cluster==0xFFFFFFFF); |
| 292 | } |
| 293 | |
| 294 | #define NBR_CLUSTER_MAX 30 |
| 295 | static int exfat_dir(disk_t *disk, const partition_t *partition, dir_data_t *dir_data, const unsigned long int first_cluster, file_info_t *dir_list) |