2020-05-01 17:19:29 +02:00
|
|
|
#ifndef __FS__FAT32_H__
|
|
|
|
#define __FS__FAT32_H__
|
|
|
|
|
|
|
|
#include <lib/part.h>
|
2022-07-04 20:16:33 +02:00
|
|
|
#include <fs/file.h>
|
2020-05-01 17:19:29 +02:00
|
|
|
|
2022-07-02 10:43:10 +02:00
|
|
|
char *fat32_get_label(struct volume *part);
|
2020-05-01 17:19:29 +02:00
|
|
|
|
2022-07-04 20:16:33 +02:00
|
|
|
struct file_handle *fat32_open(struct volume *part, const char *path);
|
2020-05-01 17:19:29 +02:00
|
|
|
|
|
|
|
#endif
|