Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions reference/zlib/functions/gzuncompress.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: riccardoscotti Status: ready -->
<!-- EN-Revision: 02ba67b51f2bde571b6ce07026e935f4e81019af Maintainer: vpinti Status: ready -->
Comment thread
DavidePastore marked this conversation as resolved.
<!-- CREDITS: riccardoscotti -->
<refentry xml:id="function.gzuncompress" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>gzuncompress</refname>
Expand All @@ -8,9 +9,9 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>string</type><methodname>gzuncompress</methodname>
<type class="union"><type>string</type><type>false</type></type><methodname>gzuncompress</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>length</parameter><initializer>0</initializer></methodparam>
<methodparam choice="opt"><type>int</type><parameter>max_length</parameter><initializer>0</initializer></methodparam>
</methodsynopsis>
<para>
Questa funzione decomprime una stringa compressa.
Expand All @@ -29,7 +30,7 @@
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>length</parameter></term>
<term><parameter>max_length</parameter></term>
<listitem>
<para>
La lunghezza massima del dato da decomprimere.
Expand All @@ -47,7 +48,7 @@
<para>
La funzione ritornerà un errore se il dato decompresso è più di
32768 volte la lunghezza dell'input compresso <parameter>data</parameter>
oppure se è maggiore del parametro opzionale <parameter>length</parameter>.
oppure se è maggiore del parametro opzionale <parameter>max_length</parameter>.
</para>
</refsect1>
<refsect1 role="examples">
Expand Down
Loading