| 1639 | } |
| 1640 | |
| 1641 | int mz_compress(unsigned char *pDest, mz_ulong *pDest_len, |
| 1642 | const unsigned char *pSource, mz_ulong source_len) { |
| 1643 | return mz_compress2(pDest, pDest_len, pSource, source_len, |
| 1644 | MZ_DEFAULT_COMPRESSION); |
| 1645 | } |
| 1646 | |
| 1647 | mz_ulong mz_compressBound(mz_ulong source_len) { |
| 1648 | return mz_deflateBound(NULL, source_len); |
no test coverage detected