about summary refs log tree commit diff homepage
path: root/gzbuffer.3
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-11-12 16:48:42 -0500
committerJune McEnroe <june@causal.agency>2018-11-12 16:48:42 -0500
commitb6ce0c6410e2f3ba2ee0877cb3d5c4713617d84f (patch)
treec9f75beb97fe4300fc070d4a9ac92525ac832372 /gzbuffer.3
parentAdd gzdopen to gzopen.3 (diff)
downloadzlib-man-pages-b6ce0c6410e2f3ba2ee0877cb3d5c4713617d84f.tar.gz
zlib-man-pages-b6ce0c6410e2f3ba2ee0877cb3d5c4713617d84f.zip
Add gzbuffer.3
Diffstat (limited to '')
-rw-r--r--gzbuffer.345
1 files changed, 45 insertions, 0 deletions
diff --git a/gzbuffer.3 b/gzbuffer.3
new file mode 100644
index 0000000..a97e317
--- /dev/null
+++ b/gzbuffer.3
@@ -0,0 +1,45 @@
+.Dd November 12, 2018
+.Dt GZBUFFER 3
+.Os
+.
+.Sh NAME
+.Nm gzbuffer
+.Nd set buffer size
+.
+.Sh LIBRARY
+.Lb libz
+.
+.Sh SYNOPSIS
+.In zlib.h
+.Ft int
+.Fn gzbuffer "gzFile file" "unsigned size"
+.
+.Sh DESCRIPTION
+Set the internal buffer size
+used by this library's functions.
+The default buffer size is 8192 bytes.
+This function must be called after
+.Xr gzopen 3
+or
+.Xr gzdopen 3 ,
+and before any other calls
+that read or write the file.
+The buffer memory allocation
+is always deferred to the first read or write.
+Three times that size in buffer space is allocated.
+A larger buffer size of,
+for example,
+64K or 128K bytes
+will noticeably increase the speed
+of decompression (reading).
+.
+.Pp
+The new buffer size also affects
+the maximum length for
+.Xr gzprintf 3 .
+.
+.Sh RETURN VALUES
+.Fn gzbuffer
+returns 0 on success,
+or -1 on failure,
+such as being called too late.