12 lines
217 B
C
12 lines
217 B
C
#ifndef __FS__FAT32_H__
|
|
#define __FS__FAT32_H__
|
|
|
|
#include <lib/part.h>
|
|
#include <fs/file.h>
|
|
|
|
char *fat32_get_label(struct volume *part);
|
|
|
|
struct file_handle *fat32_open(struct volume *part, const char *path);
|
|
|
|
#endif
|