11 lines
197 B
C
11 lines
197 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
|