about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile1
-rw-r--r--gzwrite.324
2 files changed, 25 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1e81884..6d61cbf 100644
--- a/Makefile
+++ b/Makefile
@@ -23,6 +23,7 @@ MAN += gzfread.3
 MAN += gzopen.3
 MAN += gzread.3
 MAN += gzsetparams.3
+MAN += gzwrite.3
 MAN += inflate.3
 MAN += inflateBack.3
 MAN += inflateBackEnd.3
diff --git a/gzwrite.3 b/gzwrite.3
new file mode 100644
index 0000000..c34f7ff
--- /dev/null
+++ b/gzwrite.3
@@ -0,0 +1,24 @@
+.Dd November 13, 2018
+.Dt GZWRITE 3
+.Os
+.
+.Sh NAME
+.Nm gzwrite
+.Nd write to compressed file
+.
+.Sh LIBRARY
+.Lb libz
+.
+.Sh SYNOPSIS
+.In zlib.h
+.Ft int
+.Fn gzwrite "gzFile file" "voidpc buf" "unsigned len"
+.
+.Sh DESCRIPTION
+Writes the given number of uncompressed bytes
+into the compressed file.
+.
+.Sh RETURN VALUES
+.Fn gzwrite
+returns the number of uncompressed bytes written
+or 0 in case of error.