diff options
Diffstat (limited to 'src/xz/file_io.h')
-rw-r--r-- | src/xz/file_io.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/xz/file_io.h b/src/xz/file_io.h index 6722aef8..84d5b44d 100644 --- a/src/xz/file_io.h +++ b/src/xz/file_io.h @@ -129,6 +129,19 @@ extern size_t io_read(file_pair *pair, io_buf *buf, size_t size); extern void io_fix_src_pos(file_pair *pair, size_t rewind_size); +/// \brief Seek to the given absolute position in the source file +/// +/// This calls lseek() and also clears pair->src_eof. +/// +/// \param pair Seekable source file +/// \param pos Offset relative to the beginning of the file, +/// from which the data should be read. +/// +/// \return On success, false is returned. On error, error message +/// is printed and true is returned. +extern bool io_seek_src(file_pair *pair, off_t pos); + + /// \brief Read from source file from given offset to a buffer /// /// This is remotely similar to standard pread(). This uses lseek() though, |