www.LinuxHowtos.org
ZIP_FILE_STRERROR
Section: C Library Functions (3)Index Return to Main Contents
BSD mandoc
NAME
zip_file_strerror zip_strerror - get string representation for a zip errorLIBRARY
libzip -lzip)SYNOPSIS
In zip.h Ft const char * Fn zip_file_strerror zip_file_t *file Ft const char * Fn zip_strerror zip_t *archiveDESCRIPTION
The Fn zip_strerror function returns a string describing the last error for the zip archive archive while the Fn zip_file_strerror function does the same for a zip file file (one file in an archive). The returned string must not be modified or freed, and becomes invalid when archive or file respectively, is closed or on the next call to Fn zip_strerror or Fn zip_file_strerror , respectively, for the same archive.RETURN VALUES
Fn zip_file_strerror and Fn zip_strerror return a pointer to the error string.SEE ALSO
libzip(3), zip_error_strerror3HISTORY
Fn zip_file_strerror and Fn zip_strerror were added in libzip 0.6.AUTHORS
An -nosplit An Dieter Baron Aq Mt dillo@nih.at and An Thomas Klausner Aq Mt wiz@gatalith.at