|
NAMEarchive_read_extract ,
archive_read_extract2 ,
archive_read_extract_set_progress_callback —
functions for reading streaming archives
LIBRARYStreaming Archive Library (libarchive, -larchive)SYNOPSIS#include <archive.h>
int
int
void
DESCRIPTION
RETURN VALUESMost functions return zero on success, non-zero on error. The possible return codes include:ARCHIVE_OK (the operation succeeded),
ARCHIVE_WARN (the operation succeeded but a
non-critical error was encountered), ARCHIVE_EOF
(end-of-archive was encountered), ARCHIVE_RETRY (the
operation failed but can be retried), and
ARCHIVE_FATAL (there was a fatal error; the archive
should be closed immediately).
ERRORSDetailed error codes and textual descriptions are available from thearchive_errno () and
archive_error_string () functions.
SEE ALSOtar(1), archive_read(3), archive_read_data(3), archive_read_filter(3), archive_read_format(3), archive_read_open(3), archive_read_set_options(3), archive_util(3), libarchive(3), tar(5)
Visit the GSP FreeBSD Man Page Interface. |