regen.

--HG--
branch : HEAD
diff --git a/man/zip_source_buffer.man b/man/zip_source_buffer.man
index 9689914..5225a44 100644
--- a/man/zip_source_buffer.man
+++ b/man/zip_source_buffer.man
@@ -1,6 +1,6 @@
 .\" Converted with mdoc2man 0.2
-.\" from NiH: zip_source_buffer.mdoc,v 1.5 2005/06/09 21:14:54 wiz Exp 
-.\" $NiH: zip_source_buffer.mdoc,v 1.5 2005/06/09 21:14:54 wiz Exp $
+.\" from NiH: zip_source_buffer.mdoc,v 1.6 2005/07/20 17:18:04 wiz Exp 
+.\" $NiH: zip_source_buffer.mdoc,v 1.6 2005/07/20 17:18:04 wiz Exp $
 .\"
 .\" zip_source_buffer.mdoc \-- create zip data source from buffer
 .\" Copyright (C) 2004, 2005 Dieter Baron and Thomas Klausner
@@ -33,14 +33,14 @@
 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.TH ZIP_SOURCE_DATA 3 "November 4, 2004" NiH
+.TH ZIP_SOURCE_DATA 3 "July 20, 2005" NiH
 .SH "NAME"
 zip_source_buffer \- create zip data source from buffer
 .SH "LIBRARY"
 libzip (-lzip)
 .SH "SYNOPSIS"
 .In zip.h
-.Ft int
+.Ft struct zip_source *
 .Fn zip_source_buffer "struct zip *archive" "const void *data" "off_t len" \
 "int freep"
 .SH "DESCRIPTION"
diff --git a/man/zip_source_file.man b/man/zip_source_file.man
index 64a858d..9e2e9c5 100644
--- a/man/zip_source_file.man
+++ b/man/zip_source_file.man
@@ -1,6 +1,6 @@
 .\" Converted with mdoc2man 0.2
-.\" from NiH: zip_source_file.mdoc,v 1.8 2005/07/15 14:11:16 wiz Exp 
-.\" $NiH: zip_source_file.mdoc,v 1.8 2005/07/15 14:11:16 wiz Exp $
+.\" from NiH: zip_source_file.mdoc,v 1.9 2005/07/20 17:18:04 wiz Exp 
+.\" $NiH: zip_source_file.mdoc,v 1.9 2005/07/20 17:18:04 wiz Exp $
 .\"
 .\" zip_source_file.mdoc \-- create data source from a file
 .\" Copyright (C) 2004, 2005 Dieter Baron and Thomas Klausner
@@ -33,13 +33,13 @@
 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.TH ZIP_SOURCE_FILE 3 "November 4, 2004" NiH
+.TH ZIP_SOURCE_FILE 3 "July 20, 2005" NiH
 .SH "NAME"
 zip_source_file \- create data source from a file
 .SH "LIBRARY"
 libzip (-lzip)
 .SH "SYNOPSIS"
-.Ft int
+.Ft struct zip_source *
 .Fn zip_source_file "struct zip *archive" "const char *fname" "off_t start" "off_t len"
 .SH "DESCRIPTION"
 The function
diff --git a/man/zip_source_filep.man b/man/zip_source_filep.man
index 9ebd81b..fd9feb2 100644
--- a/man/zip_source_filep.man
+++ b/man/zip_source_filep.man
@@ -1,6 +1,6 @@
 .\" Converted with mdoc2man 0.2
-.\" from NiH: zip_source_filep.mdoc,v 1.6 2005/06/09 21:14:54 wiz Exp 
-.\" $NiH: zip_source_filep.mdoc,v 1.6 2005/06/09 21:14:54 wiz Exp $
+.\" from NiH: zip_source_filep.mdoc,v 1.7 2005/07/20 17:18:04 wiz Exp 
+.\" $NiH: zip_source_filep.mdoc,v 1.7 2005/07/20 17:18:04 wiz Exp $
 .\"
 .\" zip_source_filep.mdoc \-- create data source from a file stream
 .\" Copyright (C) 2004, 2005 Dieter Baron and Thomas Klausner
@@ -33,13 +33,13 @@
 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.TH ZIP_SOURCE_FILEP 3 "November 4, 2004" NiH
+.TH ZIP_SOURCE_FILEP 3 "July 20, 2005" NiH
 .SH "NAME"
 zip_source_filep \- create data source from FILE *
 .SH "LIBRARY"
 libzip (-lzip)
 .SH "SYNOPSIS"
-.Ft int
+.Ft struct zip_source *
 .Fn zip_source_filep "struct zip *archive" "FILE *file" "off_t start" "off_t len"
 .SH "DESCRIPTION"
 The function
diff --git a/man/zip_source_function.man b/man/zip_source_function.man
index 734d123..671a770 100644
--- a/man/zip_source_function.man
+++ b/man/zip_source_function.man
@@ -1,6 +1,6 @@
 .\" Converted with mdoc2man 0.2
-.\" from NiH: zip_source_function.mdoc,v 1.13 2005/06/09 21:14:54 wiz Exp 
-.\" $NiH: zip_source_function.mdoc,v 1.13 2005/06/09 21:14:54 wiz Exp $
+.\" from NiH: zip_source_function.mdoc,v 1.14 2005/07/20 17:18:04 wiz Exp 
+.\" $NiH: zip_source_function.mdoc,v 1.14 2005/07/20 17:18:04 wiz Exp $
 .\"
 .\" zip_source_function.mdoc \-- create data source from function
 .\" Copyright (C) 2004, 2005 Dieter Baron and Thomas Klausner
@@ -33,14 +33,14 @@
 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.TH ZIP_SOURCE_FUNCTION 3 "December 22, 2004" NiH
+.TH ZIP_SOURCE_FUNCTION 3 "July 20, 2005" NiH
 .SH "NAME"
 zip_source_function \- create data source from function
 .SH "LIBRARY"
 libzip (-lzip)
 .SH "SYNOPSIS"
 .In zip.h
-.Ft int
+.Ft struct zip_source *
 .Fn zip_source_function "struct zip *archive" "zip_source_callback fn" "void *userdata"
 .SH "DESCRIPTION"
 The function
diff --git a/man/zip_source_zip.man b/man/zip_source_zip.man
index e6719c1..d52ebfe 100644
--- a/man/zip_source_zip.man
+++ b/man/zip_source_zip.man
@@ -1,6 +1,6 @@
 .\" Converted with mdoc2man 0.2
-.\" from NiH: zip_source_zip.mdoc,v 1.6 2005/06/09 21:14:54 wiz Exp 
-.\" $NiH: zip_source_zip.mdoc,v 1.6 2005/06/09 21:14:54 wiz Exp $
+.\" from NiH: zip_source_zip.mdoc,v 1.7 2005/07/20 17:18:04 wiz Exp 
+.\" $NiH: zip_source_zip.mdoc,v 1.7 2005/07/20 17:18:04 wiz Exp $
 .\"
 .\" zip_source_zip.mdoc \-- create data source from zip file
 .\" Copyright (C) 2004, 2005 Dieter Baron and Thomas Klausner
@@ -33,14 +33,14 @@
 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.TH ZIP_SOURCE_ZIP 3 "November 4, 2004" NiH
+.TH ZIP_SOURCE_ZIP 3 "July 20, 2005" NiH
 .SH "NAME"
 zip_source_zip \- create data source from zip file
 .SH "LIBRARY"
 libzip (-lzip)
 .SH "SYNOPSIS"
 .In zip.h
-.Ft int
+.Ft struct zip_source *
 .Fn zip_source_zip "struct zip *archive" "struct zip *srcarchive" \
 "int srcidx" "int flags" "off_t start" "off_t len"
 .SH "DESCRIPTION"