blob: 364b3db295051527f6d08adb8a383bff9860d5be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef FAT_H
#define FAT_H
#include <stdbool.h>
#include "drive.h"
void init_fat();
bool try_fat_init_drive(struct drive *d);
void fat_ready_shutdown();
#endif
|