=========================================================================== */
| 55 | /* =========================================================================== |
| 56 | */ |
| 57 | int ZEXPORT compress (Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) |
| 58 | { |
| 59 | return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); |
| 60 | } |
| 61 | |
| 62 | /* =========================================================================== |
| 63 | If the default memLevel or windowBits for deflateInit() is changed, then |
nothing calls this directly
no test coverage detected