rulimine/common/fs/iso9660.h

11 lines
197 B
C
Raw Normal View History

2021-02-21 05:45:24 +03:00
#ifndef __FS__ISO9660_H__
#define __FS__ISO9660_H__
#include <stdint.h>
#include <lib/part.h>
#include <fs/file.h>
2021-02-21 05:45:24 +03:00
struct file_handle *iso9660_open(struct volume *vol, const char *path);
2021-02-21 05:45:24 +03:00
#endif