diff options
| -rw-r--r-- | doc/TclZlib.3 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/TclZlib.3 b/doc/TclZlib.3 index 7a9628c..a257a39 100644 --- a/doc/TclZlib.3 +++ b/doc/TclZlib.3 @@ -18,7 +18,7 @@ int \fBTcl_ZlibDeflate\fR(\fIinterp, format, dataObj, level, dictObj\fR) .sp int -\fBTcl_ZlibInflate\fR(\fIinterp, format, dataObj, dictObj\fR) +\fBTcl_ZlibInflate\fR(\fIinterp, format, dataObj, bufferSize, dictObj\fR) .sp unsigned int \fBTcl_ZlibCRC32\fR(\fIinitValue, bytes, length\fR) @@ -85,6 +85,9 @@ section \fBGZIP OPTIONS DICTIONARY\fR for details about the contents of this dictionary. .AP "unsigned int" initValue in The initial value for the checksum algorithm. +.AP "Tcl_Size" bufferSize in +A hint as to what size of buffer is to be used to receive the data. +Use 0 to use a geric guess based on the input data. .AP "unsigned char" *bytes in An array of bytes to run the checksum algorithm over, or NULL to get the recommended initial value for the checksum algorithm. |
