Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

zip_error_to_str(3) [debian man page]

ZIP_ERROR_TO_STR(3)					     Library Functions Manual					       ZIP_ERROR_TO_STR(3)

NAME
zip_error_to_str - get string representation of zip error LIBRARY
libzip (-lzip) SYNOPSIS
#include <zip.h> int zip_error_to_str(char *buf, zip_uint64_t len, int ze, int se); DESCRIPTION
The zip_error_to_str function stores a string describing the libzip error code ze in the user-provided buffer buf which has size len. The buffer is always NUL-terminated. se should be the value of the global variable errno at the time of the error or the zlib error code, depending on ze. zip_error_to_str is especially useful if zip_open failed, since then there is no is available to store the error code; otherwise zip_str- error or zip_file_strerror are more convenient. RETURN VALUES
zip_error_to_str returns the number of characters that would have been written to a sufficiently sized buf, excluding the terminating NUL character. SEE ALSO
libzip(3), zip_error_get(3), zip_error_get_sys_type(3), zip_file_error_get(3), zip_file_strerror(3), zip_open(3), zip_strerror(3) AUTHORS
Dieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at> NiH March 10, 2009 ZIP_ERROR_TO_STR(3)

Check Out this Related Man Page

LIBZIP(3)						     Library Functions Manual							 LIBZIP(3)

NAME
libzip - library for manipulating zip archives LIBRARY
libzip (-lzip) SYNOPSIS
#include <zip.h> DESCRIPTION
libzip is a library for reading, creating, and modifying zip archives. Below there are two sections listing functions: one for how to read from zip archives and one for how to create/modify them. READING ZIP ARCHIVES
open archive zip_open(3) zip_fdopen(3) find files zip_name_locate(3) read files zip_fopen(3) zip_fopen_encrypted(3) zip_fopen_index(3) zip_fopen_index_encrypted(3) zip_fread(3) zip_fclose(3) close archive zip_close(3) miscellaneous zip_stat(3) zip_get_archive_comment(3) zip_get_archive_flag(3) zip_get_file_comment(3) zip_get_name(3) zip_get_num_entries(3) zip_set_default_password(3) CREATING
/MODIFYING ZIP ARCHIVES create/open archive zip_open(3) add/change files and directories zip_add(3) zip_add_dir(3) zip_replace(3) zip_set_file_comment(3) zip_source_buffer(3) zip_source_file(3) zip_source_filep(3) zip_source_function(3) zip_source_zip(3) zip_source_free(3) rename files zip_rename(3) delete files zip_delete(3) revert changes zip_unchange(3) zip_unchange_all(3) zip_unchange_archive(3) close archive zip_close(3) miscellaneous zip_set_archive_comment(3) zip_set_archive_flag(3) ERROR HANDLING
zip_error_to_str(3) zip_strerror(3) zip_file_strerror(3) zip_error_get(3) zip_error_get_sys_type(3) zip_errors(3) AUTHORS
Dieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at> NiH February 14, 2011 LIBZIP(3)
Man Page