From 92927dc7f06b676254d5b6ab62f463d01809843f Mon Sep 17 00:00:00 2001 From: Enrique Garcia Briones Date: Wed, 16 Jun 2004 21:35:43 +0000 Subject: [PATCH] give more presentation :) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@161539 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/bzip2/functions/bzclose.xml | 9 ++++++--- reference/bzip2/functions/bzcompress.xml | 15 +++++++++------ reference/bzip2/functions/bzdecompress.xml | 15 +++++++++------ reference/bzip2/functions/bzerrno.xml | 8 ++++++-- reference/bzip2/functions/bzerror.xml | 16 ++++++++++------ reference/bzip2/functions/bzerrstr.xml | 8 ++++++-- reference/bzip2/functions/bzflush.xml | 11 +++++++++-- reference/bzip2/functions/bzopen.xml | 18 ++++++++++++------ reference/bzip2/functions/bzread.xml | 19 +++++++++++-------- reference/bzip2/functions/bzwrite.xml | 16 ++++++++++------ 10 files changed, 88 insertions(+), 47 deletions(-) diff --git a/reference/bzip2/functions/bzclose.xml b/reference/bzip2/functions/bzclose.xml index 54763a4c71..94fecc5552 100644 --- a/reference/bzip2/functions/bzclose.xml +++ b/reference/bzip2/functions/bzclose.xml @@ -1,10 +1,10 @@ - + bzclose - Close a bzip2 file pointer + Close a bzip2 file Description @@ -22,8 +22,11 @@ The file pointer must be valid, and must point to a file successfully opened by bzopen. + + + &reftitle.seealso; - See also bzopen. + bzopen. diff --git a/reference/bzip2/functions/bzcompress.xml b/reference/bzip2/functions/bzcompress.xml index b1b246728c..ecf9039f93 100644 --- a/reference/bzip2/functions/bzcompress.xml +++ b/reference/bzip2/functions/bzcompress.xml @@ -1,5 +1,5 @@ - + @@ -34,9 +34,16 @@ value. Regardless of the workfactor, the generated output is the same. + + + &reftitle.seealso; + bzdecompress. + + + + Example - <function>bzcompress</function> Example - - - See also bzdecompress. - diff --git a/reference/bzip2/functions/bzdecompress.xml b/reference/bzip2/functions/bzdecompress.xml index c0ed495e35..e7f439ca33 100644 --- a/reference/bzip2/functions/bzdecompress.xml +++ b/reference/bzip2/functions/bzdecompress.xml @@ -1,5 +1,5 @@ - + @@ -23,9 +23,16 @@ roughly half the speed. See the bzip2 documentation for more information about this feature. + + + &reftitle.seealso; + bzcompress. + + + + Example - <function>bzdecompress</function> \n"; ]]> - - - See also bzcompress. - diff --git a/reference/bzip2/functions/bzerrno.xml b/reference/bzip2/functions/bzerrno.xml index faa0e775e7..6b38a6ed20 100644 --- a/reference/bzip2/functions/bzerrno.xml +++ b/reference/bzip2/functions/bzerrno.xml @@ -1,5 +1,5 @@ - + @@ -16,8 +16,12 @@ Returns the error number of any bzip2 error returned by the file pointer bz. + + + &reftitle.seealso; - See also bzerror and bzerrstr. + bzerror, + bzerrstr. diff --git a/reference/bzip2/functions/bzerror.xml b/reference/bzip2/functions/bzerror.xml index 3790a889cd..efee86ad98 100644 --- a/reference/bzip2/functions/bzerror.xml +++ b/reference/bzip2/functions/bzerror.xml @@ -1,5 +1,5 @@ - + @@ -17,9 +17,17 @@ of any bzip2 error returned by the file pointer bz. + + + &reftitle.seealso; + bzerrno, + bzerrstr. + + + + Example - <function>bzerror</function> Example - - - See also bzerrno and bzerrstr. - diff --git a/reference/bzip2/functions/bzerrstr.xml b/reference/bzip2/functions/bzerrstr.xml index e3f0ee99f0..5351618b76 100644 --- a/reference/bzip2/functions/bzerrstr.xml +++ b/reference/bzip2/functions/bzerrstr.xml @@ -1,5 +1,5 @@ - + @@ -16,8 +16,12 @@ Returns the error string of any bzip2 error returned by the file pointer bz. + + + &reftitle.seealso; - See also bzerrno and bzerror. + bzerrno, + bzerror. diff --git a/reference/bzip2/functions/bzflush.xml b/reference/bzip2/functions/bzflush.xml index 40ff387ab4..cee4d5e960 100644 --- a/reference/bzip2/functions/bzflush.xml +++ b/reference/bzip2/functions/bzflush.xml @@ -1,5 +1,5 @@ - + @@ -16,11 +16,18 @@ Forces a write of all buffered bzip2 data for the file pointer bz. + + + &reftitle.returnvalues; &return.success; + + + &reftitle.seealso; - See also bzread and bzwrite. + bzread, + bzwrite. diff --git a/reference/bzip2/functions/bzopen.xml b/reference/bzip2/functions/bzopen.xml index 22663831b0..ddca259e0f 100644 --- a/reference/bzip2/functions/bzopen.xml +++ b/reference/bzip2/functions/bzopen.xml @@ -1,5 +1,5 @@ - + @@ -19,13 +19,23 @@ open. mode is similar to the fopen function (`r' for read, `w' for write, etc.). + + + &reftitle.returnvalues; If the open fails, bzopen returns &false;, otherwise it returns a pointer to the newly opened file. + + + &reftitle.seealso; + bzclose. + + + + Example - <function>bzopen</function> Example - - - See also bzclose. - diff --git a/reference/bzip2/functions/bzread.xml b/reference/bzip2/functions/bzread.xml index b21e3b7399..aa5dea7596 100644 --- a/reference/bzip2/functions/bzread.xml +++ b/reference/bzip2/functions/bzread.xml @@ -1,5 +1,5 @@ - + @@ -23,9 +23,18 @@ bzread will read 1024 (uncompressed) bytes at a time. + + + &reftitle.seealso; + bzwrite, + feof, + bzopen. + + + + Example - <function>bzread</function> Example - - - See also bzwrite, - feof, and - bzopen. - diff --git a/reference/bzip2/functions/bzwrite.xml b/reference/bzip2/functions/bzwrite.xml index 0ffedff0e7..ae693ac9f5 100644 --- a/reference/bzip2/functions/bzwrite.xml +++ b/reference/bzip2/functions/bzwrite.xml @@ -1,5 +1,5 @@ - + @@ -22,9 +22,17 @@ after length (uncompressed) bytes have been written or the end of string is reached, whichever comes first. + + + &reftitle.seealso; + bzread, + bzopen. + + + + Example - <function>bzwrite</function> Example - - - See also bzread and bzopen. -