2019-06-03 01:57:25 +00:00
|
|
|
#ifndef PANG_O_LIN_IO_H__
|
|
|
|
#define PANG_O_LIN_IO_H__
|
|
|
|
|
|
|
|
#ifdef unix
|
2019-06-09 12:32:53 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
2019-06-03 01:57:25 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ssize_t pang_write(int fd, const void *buf, size_t count);
|
|
|
|
ssize_t pang_read(int fd, void *buf, size_t count);
|
|
|
|
off_t pang_seek(int fd, off_t offset, int whence);
|
2019-06-09 12:32:53 +00:00
|
|
|
int pang_open(const char *pathname, int flags);
|
|
|
|
int pang_close(int fd);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
#endif /* PANG_O_LIN_IO_H__ */
|