zip_error_get_sys_type(3) get type of system error code

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);

AUTHORS

Dieter Baron <[email protected]> and Thomas Klausner <[email protected]>