mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-02 05:06:59 +03:00
ba5c0004e6
made them more standard compliant
12 lines
213 B
C
12 lines
213 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
|