gzputs — Writes to a compressed file.
Libz.lib
On success, gzputs()
shall return the
number of uncompressed
bytes actually written to file.
On error gzputs() shall return a value
less than or equal to 0
.
Applications may examine the cause using gzerror().
The gzputs() function shall write the null terminated string s to the compressed file referenced by file, which shall have been opened in a write mode (see gzopen() and gzdopen()). The terminating null character shall not be written. The gzputs() function shall return the number of uncompressed bytes actually written.
To write the null terminated string s="ello" to the compressed file referenced by file:
#include <stdio.h> |
Output
Number of character
written is 4. |
On error, gzputs()
shall set
the error number associated with the stream identified by file
to indicate the error. Applications should use gzerror()
to access this error value.
If file is NULL
,
gzputs() shall return Z_STREAM_ERR
.
For additional information or queries on this page send feedback
© 2007-2009 Nokia Corporation. All rights reserved. This documentation can be used in the connection with this Product to help and support the user. |
|