mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-03 05:32:00 +03:00
ba5c0004e6
made them more standard compliant
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
|