=========================================================================== Writes the given null-terminated string to the compressed file, excluding the terminating null character. gzputs returns the number of characters written, or -1 in case of error. */
(file, s)
| 696 | gzputs returns the number of characters written, or -1 in case of error. |
| 697 | */ |
| 698 | int ZEXPORT gzputs(file, s) |
| 699 | gzFile file; |
| 700 | const char *s; |
| 701 | { |
| 702 | return gzwrite(file, (char*)s, (unsigned)strlen(s)); |
| 703 | } |
| 704 | |
| 705 | |
| 706 | /* =========================================================================== |