mirror of
https://github.com/limine-bootloader/limine
synced 2025-02-12 23:24:02 +03:00
11 lines
193 B
C
11 lines
193 B
C
#ifndef FS__ISO9660_H__
|
|
#define FS__ISO9660_H__
|
|
|
|
#include <stdint.h>
|
|
#include <lib/part.h>
|
|
#include <fs/file.h>
|
|
|
|
struct file_handle *iso9660_open(struct volume *vol, const char *path);
|
|
|
|
#endif
|