rulimine/common/fs/fat32.h

12 lines
217 B
C
Raw Normal View History

2020-05-01 18:19:29 +03:00
#ifndef __FS__FAT32_H__
#define __FS__FAT32_H__
#include <lib/part.h>
#include <fs/file.h>
2020-05-01 18:19:29 +03:00
char *fat32_get_label(struct volume *part);
2020-05-01 18:19:29 +03:00
struct file_handle *fat32_open(struct volume *part, const char *path);
2020-05-01 18:19:29 +03:00
#endif