about summary refs log tree commit diff homepage
path: root/gzseek.3
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-11-13 16:24:07 -0500
committerJune McEnroe <june@causal.agency>2018-11-13 16:24:07 -0500
commit08a786fb6651efd4ba38245e300f87526ea99505 (patch)
tree71f78d5d23774751bc0a39b1a5ed099786a5f472 /gzseek.3
parentAdd gzflush.3 (diff)
downloadzlib-man-pages-08a786fb6651efd4ba38245e300f87526ea99505.tar.gz
zlib-man-pages-08a786fb6651efd4ba38245e300f87526ea99505.zip
Add gzseek.3
Diffstat (limited to '')
-rw-r--r--gzseek.370
1 files changed, 70 insertions, 0 deletions
diff --git a/gzseek.3 b/gzseek.3
new file mode 100644
index 0000000..cf1bc71
--- /dev/null
+++ b/gzseek.3
@@ -0,0 +1,70 @@
+.Dd November 13, 2018
+.Dt GZSEEK 3
+.Os
+.
+.Sh NAME
+.Nm gzseek ,
+.Nm gzrewind
+.Nd seek compressed file
+.
+.Sh LIBRARY
+.Lb libz
+.
+.Sh SYNOPSIS
+.In zlib.h
+.Ft z_off_t
+.Fn gzseek "gzFile file" "z_off_t offset" "int whence"
+.Ft int
+.Fn gzrewind "gzFile file"
+.
+.Sh DESCRIPTION
+Sets the starting position
+for the next
+.Xr gzread 3
+or
+.Xr gzwrite 3
+on the given compressed file.
+The
+.Fa offset
+represents a number of bytes
+in the uncompressed data stream.
+The
+.Fa whence
+parameter
+is defined as in
+.Xr lseek 2 ;
+the value
+.Dv SEEK_END
+is not supported.
+.
+.Pp
+If the file is opened for reading,
+this function is emulated
+but can be extremely slow.
+If the file is opened for writing,
+only forward seeks are supported;
+.Fn gzseek
+then compresses a sequence of zeroes
+up to the new starting position.
+.
+.Pp
+.Fn gzrewind
+rewinds the given file.
+This function is supported
+only for reading.
+.
+.Pp
+.Fn gzrewind file
+is equivalent to
+.Li (int) Ns Fn gzseek file 0L SEEK_SET .
+.
+.Sh RETURN VALUES
+.Fn gzseek
+returns the resulting offset location
+as measured in bytes
+from the beginning of the uncompressed stream,
+or -1 in case of error,
+in particular if the file
+is opened for writing
+and the new starting position
+would be before the current position.