diff options
author | Paul Ivanov <pi@berkeley.edu> | 2023-11-14 16:23:02 -0800 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2023-11-14 18:44:32 -0800 |
commit | 643e17b7498d12ab8d15565662880579692f769d (patch) | |
tree | 21d835548124922e575644bb0165574552fff6fa /zlib.h | |
parent | 15c45adb76e81a7e3a8a9e17b2a56eb90f668f44 (diff) | |
download | zlib-643e17b7498d12ab8d15565662880579692f769d.tar.gz zlib-643e17b7498d12ab8d15565662880579692f769d.tar.bz2 zlib-643e17b7498d12ab8d15565662880579692f769d.zip |
Correct repeated words in source file comments and a readme.
Diffstat (limited to 'zlib.h')
-rw-r--r-- | zlib.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -936,10 +936,10 @@ ZEXTERN int ZEXPORT inflateSync(z_streamp strm); | |||
936 | inflateSync returns Z_OK if a possible full flush point has been found, | 936 | inflateSync returns Z_OK if a possible full flush point has been found, |
937 | Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point | 937 | Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point |
938 | has been found, or Z_STREAM_ERROR if the stream structure was inconsistent. | 938 | has been found, or Z_STREAM_ERROR if the stream structure was inconsistent. |
939 | In the success case, the application may save the current current value of | 939 | In the success case, the application may save the current value of total_in |
940 | total_in which indicates where valid compressed data was found. In the | 940 | which indicates where valid compressed data was found. In the error case, |
941 | error case, the application may repeatedly call inflateSync, providing more | 941 | the application may repeatedly call inflateSync, providing more input each |
942 | input each time, until success or end of the input data. | 942 | time, until success or end of the input data. |
943 | */ | 943 | */ |
944 | 944 | ||
945 | ZEXTERN int ZEXPORT inflateCopy(z_streamp dest, | 945 | ZEXTERN int ZEXPORT inflateCopy(z_streamp dest, |