zip_source_buffer(3) - Linux man page
Name
zip_source_buffer - create zip data source from bufferLibrary
libzip (-lzip)Synopsis
#include <zip.h>struct zip_source * zip_source_buffer(struct zip *archive, const void *data, off_t len); "int freep"
Description
The function zip_source_buffer creates a zip source from the buffer data of size len. If freep is non-zero, the buffer will be freed when it is no longer needed.Return Values
Errors
zip_source_buffer fails if:
- [ZIP_ER_INVAL]
- len is negative, or len is greater than zero and data is NULL.
- [ZIP_ER_MEMORY]
- Required memory could not be allocated.
See Also
libzip(3), zip_add(3), zip_replace(3), zip_source_file(3), zip_source_filep(3), zip_source_free(3), zip_source_function(3), zip_source_zip(3)Authors
Dieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at>