=========================================================================== */
| 61 | /* =========================================================================== |
| 62 | */ |
| 63 | int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source, |
| 64 | uLong sourceLen) { |
| 65 | return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); |
| 66 | } |
| 67 | |
| 68 | /* =========================================================================== |
| 69 | If the default memLevel or windowBits for deflateInit() is changed, then |
nothing calls this directly
no test coverage detected