diff options
author | June McEnroe <june@causal.agency> | 2018-11-12 16:53:29 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-11-12 16:53:29 -0500 |
commit | 629024bec1c56ec7afb4fe40621ce2a772122f6e (patch) | |
tree | 3965190c92d1085ab7230c70d5f369c6fe14c9e1 | |
parent | Add gzbuffer.3 (diff) | |
download | zlib-man-pages-629024bec1c56ec7afb4fe40621ce2a772122f6e.tar.gz zlib-man-pages-629024bec1c56ec7afb4fe40621ce2a772122f6e.zip |
Add gzsetparams.3
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | gzsetparams.3 | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 02dee6a..4506f6c 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ MAN += deflateSetHeader.3 MAN += deflateTune.3 MAN += gzbuffer.3 MAN += gzopen.3 +MAN += gzsetparams.3 MAN += inflate.3 MAN += inflateBack.3 MAN += inflateBackEnd.3 diff --git a/gzsetparams.3 b/gzsetparams.3 new file mode 100644 index 0000000..88ba96c --- /dev/null +++ b/gzsetparams.3 @@ -0,0 +1,37 @@ +.Dd November 12, 2018 +.Dt GZSETPARAMS 3 +.Os +. +.Sh NAME +.Nm gzsetparams +.Nd set compression level and strategy +. +.Sh LIBRARY +.Lb libz +. +.Sh SYNOPSIS +.In zlib.h +.Ft int +.Fn gzsetparams "gzFile file" "int level" "int strategy" +. +.Sh DESCRIPTION +Dynamically update the compression level or strategy. +See the description of +.Xr deflateInit2 3 +for the meaning +of these parameters. +Previously provided data is flushed +before the parameter change. +. +.Sh RETURN VALUES +.Fn gzsetparams +returns +.Dv Z_OK +if success, +.Dv Z_STREAM_ERROR +if the file was not opened for writing, +.Dv Z_ERRNO +if there is an error writing the flushed data, +or +.Dv Z_MEM_ERROR +if there is a memory allocation error. |