13 lines
196 B
C
13 lines
196 B
C
#ifndef ISO_H
|
|
#define ISO_H
|
|
|
|
#include <k/types.h>
|
|
|
|
#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 */
|