k-tana-zero/k/iso.h

13 lines
196 B
C
Raw Normal View History

2022-04-23 16:28:54 +00:00
#ifndef ISO_H
#define ISO_H
#include <k/types.h>
#define O_RDONLY 0
int open(const char *path, int flags);
2022-04-24 00:18:17 +00:00
s64 read(int fd, void *buf, size_t count);
int close(int fd);
2022-04-23 16:28:54 +00:00
#endif /* !ISO_H */