zip_error_system_type - return type of system error
#include <zip.h> int zip_error_system_type(const zip_error_t *ze);
ZIP_ERROR_SYSTEM_TYPE(3) BSD Library Functions Manual ZIP_ERROR_SYSTEM_TYPE(3)
NAME
zip_error_system_type -- return type of system error
LIBRARY
libzip (-lzip)
SYNOPSIS
#include <zip.h>
int
zip_error_system_type(const zip_error_t *ze);
DESCRIPTION
The zip_error_system_type() function returns the type of the system spe-
cific part for the zip_error ze. Currently, the following system types
are defined:
ZIP_ET_NONE System specific part of ze is unused.
ZIP_ET_SYS System specific part of ze is an errno(2).
ZIP_ET_ZLIB System specific part of ze is a zlib(3) error.
ATTRIBUTES
See attributes(7) for descriptions of the following attributes:
+---------------+------------------+
|ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+---------------+------------------+
|Availability | compress/libzip |
+---------------+------------------+
|Stability | Volatile |
+---------------+------------------+
SEE ALSO
libzip(3), zip_error_code_system(3)
HISTORY
zip_error_system_type() was added in libzip 1.0.
AUTHORS
Dieter Baron <dillo@nih.at> and Thomas Klausner <tk@giga.or.at>
NOTES
Source code for open source software components in Oracle Solaris can be
found at https://www.oracle.com/downloads/opensource/solaris-source-code-
downloads.html.
This software was built from source available at https://github.com/ora-
cle/solaris-userland. The original community source was downloaded from
https://libzip.org/download/libzip-1.7.3.tar.gz.
Further information about this software can be found on the open source
community website at https://libzip.org/.
BSD December 18, 2017 BSD