========================================================================= */
(adler, buf, len)
| 132 | |
| 133 | /* ========================================================================= */ |
| 134 | uLong ZEXPORT adler32(adler, buf, len) |
| 135 | uLong adler; |
| 136 | const Bytef *buf; |
| 137 | uInt len; |
| 138 | { |
| 139 | return adler32_z(adler, buf, len); |
| 140 | } |
| 141 | |
| 142 | /* ========================================================================= */ |
| 143 | local uLong adler32_combine_(adler1, adler2, len2) |
no test coverage detected