summaryrefslogtreecommitdiff
path: root/src/kernel/fat.h
blob: cadb0738b9060ee9d7dde35cdcee27f4ad8e3c12 (plain) (blame)
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