1 #ifndef _WIMLIB_FILE_IO_H
2 #define _WIMLIB_FILE_IO_H
8 full_read(int fd, void *buf, size_t n);
11 full_write(int fd, const void *buf, size_t n);
14 full_pread(int fd, void *buf, size_t nbyte, off_t offset);
17 full_pwrite(int fd, const void *buf, size_t count, off_t offset);
30 full_writev(int fd, struct iovec *iov, int iovcnt);
33 filedes_offset(int fd);
39 #endif /* _WIMLIB_FILE_IO_H */