ZIP_ERROR_GET_SYS_TYP... BSD Library Functions Manual ZIP_ERROR_GET_SYS_TYP...
NAME
zip_error_get_sys_type -- get type of system error code (obsolete inter- face)
LIBRARY
libzip (-lzip)
SYNOPSIS
#include <zip.h> int zip_error_get_sys_type(int ze);
DESCRIPTION
The function zip_error_get_sys_type() is deprecated; use zip_error_init_with_code(3) and zip_error_system_type(3) instead. Replace int i = zip_error_get_sys_type(ze); with zip_error_t error; zip_error_init_with_code(&error, ze); int i = zip_error_system_type(&error);
SEE ALSO
libzip(3), zip_error_init_with_code(3), zip_error_system_type(3)
HISTORY
zip_error_get_sys_type() was added in libzip 0.6. It was deprecated in libzip 1.0, use zip_error_system_type() instead.
AUTHORS
Dieter Baron <dillo@nih.at> and Thomas Klausner <tk@giga.or.at> BSD December 18, 2017 BSD
libzip 1.5.1 - Generated Tue Nov 13 18:15:10 CST 2018