1 2 3 4 5 6 7 8 9 10 11 12
#ifndef FAT_H #define FAT_H #include <stdbool.h> #include <stdint.h> #include "drive.h" void init_fat(); bool try_fat_init_drive(struct drive *d); #endif