pang-o-lin/include/io.h
Sean Cross 5fb4ea8474 commit some source
Signed-off-by: Sean Cross <sean@xobs.io>
2019-06-03 09:57:25 +08:00

14 lines
310 B
C

#ifndef PANG_O_LIN_IO_H__
#define PANG_O_LIN_IO_H__
#include <sys/types.h>
#ifdef unix
#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);
#endif /* PANG_O_LIN_IO_H__ */