summaryrefslogtreecommitdiff
path: root/src/kernel/fat.h
blob: 3ca9cc3d345650221f322257fb26717910ffac0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef FAT_H
#define FAT_H

#include <stdbool.h>
#include "drive.h"

void init_fat();

bool try_fat_init_drive(struct drive *d);

#endif