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