MAN page from PCLinuxOS lib64zip-devel-1.3.0-1pclos2017.x86_64.rpm
ZIP_ERROR_GET_SYS_TYPE
Section: Library Functions Manual (3)
Updated: December 2, 2014
Index NAME
zip_error_get_sys_type- get type of system error code
LIBRARY
libzip (-lzip)
SYNOPSIS
#include <zip.h>int
- zip_error_get_sys_type(int ze);
DESCRIPTION
The functionzip_error_get_sys_type()is deprecated; usezip_error_init_with_code(3)andzip_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) AUTHORS
Dieter Baron <dilloAATTnih.at>andThomas Klausner <tkAATTgiga.or.at>
Index
- NAME
- LIBRARY
- SYNOPSIS
- DESCRIPTION
- SEE ALSO
- AUTHORS
This document was created byman2html,using the manual pages.