LIBRARY
libzip (-lzip)SYNOPSIS
#include <zip.h>zip_source_t *
- zip_source_zip(zip_t *archive, zip_t *srcarchive, zip_uint64_t srcidx, zip_flags_t flags, zip_uint64_t start, zip_int64_t len);
DESCRIPTION
Supported flags are:
- ZIP_FL_UNCHANGED
- Try to get the original data without any changes that may have been made to srcarchive after opening it.
- ZIP_FL_RECOMPRESS
- When adding the data from srcarchive, re-compress it using the current settings instead of copying the compressed data.
RETURN VALUES
Upon successful completion, the created source is returned. Otherwise, NULL is returned and the error code in archive is set to indicate the error.ERRORS
zip_source_zip() fails if:- [ZIP_ER_CHANGED]
- Unchanged data was requested, but it is not available.
- [ZIP_ER_INVAL]
- srcarchive, srcidx, start, or len are invalid.
- [ZIP_ER_MEMORY]
- Required memory could not be allocated.
Additionally, it can return all error codes from zip_stat_index() and zip_fopen_index().