#ifndef ISO_H #define ISO_H #include #define O_RDONLY 0 int open(const char *path, int flags); s64 read(int fd, void *buf, size_t count); int close(int fd); #endif /* !ISO_H */