summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_data.3
diff options
context:
space:
mode:
authorRoman Neuhauser <neuhauser@sigpipe.cz>2011-03-28 05:16:43 -0400
committerRoman Neuhauser <neuhauser@sigpipe.cz>2011-03-28 05:16:43 -0400
commit4ed74ca8ff603529c1379e4efe2f31651906ee4e (patch)
tree6288d6f1d304d9b1edf8e7a6ccaa77b2f9bbc32d /libarchive/archive_read_data.3
parent273bbd6e1a2bff1190011faca4a95791fe304cd1 (diff)
downloadlibarchive-4ed74ca8ff603529c1379e4efe2f31651906ee4e.tar.gz
archive_read_header.3: archive_read_next_header* functions
for symmetry: neither archive_read_data.3 nor archive_read_extract.3 is a better home for these, so they should have their own man page. SVN-Revision: 3089
Diffstat (limited to 'libarchive/archive_read_data.3')
-rw-r--r--libarchive/archive_read_data.323
1 files changed, 3 insertions, 20 deletions
diff --git a/libarchive/archive_read_data.3 b/libarchive/archive_read_data.3
index 80468fb3..9896c969 100644
--- a/libarchive/archive_read_data.3
+++ b/libarchive/archive_read_data.3
@@ -24,13 +24,11 @@
.\"
.\" $FreeBSD$
.\"
-.Dd March 19, 2011
+.Dd March 22, 2011
.Dt archive_read_data 3
.Os
.Sh NAME
-.Nm archive_read_next_header ,
-.Nm archive_read_next_header2 ,
-.Nm archive_read_data ,
+.Nm archive_read_data
.Nm archive_read_data_block ,
.Nm archive_read_data_skip ,
.\" #if ARCHIVE_API_VERSION < 3
@@ -40,10 +38,6 @@
.Nd functions for reading streaming archives
.Sh SYNOPSIS
.In archive.h
-.Ft int
-.Fn archive_read_next_header "struct archive *" "struct archive_entry **"
-.Ft int
-.Fn archive_read_next_header2 "struct archive *" "struct archive_entry *"
.Ft ssize_t
.Fn archive_read_data "struct archive *" "void *buff" "size_t len"
.Ft int
@@ -64,18 +58,6 @@
.\"
.Sh DESCRIPTION
.Bl -tag -compact -width indent
-.It Fn archive_read_next_header
-Read the header for the next entry and return a pointer to
-a
-.Tn struct archive_entry .
-This is a convenience wrapper around
-.Fn archive_read_next_header2
-that reuses an internal
-.Tn struct archive_entry
-object for each request.
-.It Fn archive_read_next_header2
-Read the header for the next entry and populate the provided
-.Tn struct archive_entry .
.It Fn archive_read_data
Read data associated with the header just read.
Internally, this is a convenience function that calls
@@ -155,6 +137,7 @@ functions.
.Xr archive_read_extract 3 ,
.Xr archive_read_filter 3 ,
.Xr archive_read_format 3 ,
+.Xr archive_read_header 3 ,
.Xr archive_read_open 3 ,
.Xr archive_read_set_options 3 ,
.Xr archive_util 3 ,