X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=deps%2Flibchdr%2Fdeps%2Fzlib-1.2.13%2Fcompress.c;fp=deps%2Flibchdr%2Fdeps%2Fzlib-1.2.11%2Fcompress.c;h=2ad5326c14ec04407696f01f51dda43d32ecf3b4;hb=9e052883388b2b607a488e48b3cb6db52a0997dd;hp=e2db404abf888bd2c85844985b5ae9784b955c63;hpb=7e49a25d527a1d79569f39a6f2d8d28a0d6cebd5;p=pcsx_rearmed.git diff --git a/deps/libchdr/deps/zlib-1.2.11/compress.c b/deps/libchdr/deps/zlib-1.2.13/compress.c similarity index 94% rename from deps/libchdr/deps/zlib-1.2.11/compress.c rename to deps/libchdr/deps/zlib-1.2.13/compress.c index e2db404a..2ad5326c 100644 --- a/deps/libchdr/deps/zlib-1.2.11/compress.c +++ b/deps/libchdr/deps/zlib-1.2.13/compress.c @@ -19,7 +19,7 @@ memory, Z_BUF_ERROR if there was not enough room in the output buffer, Z_STREAM_ERROR if the level parameter is invalid. */ -int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) +int ZEXPORT compress2(dest, destLen, source, sourceLen, level) Bytef *dest; uLongf *destLen; const Bytef *source; @@ -65,7 +65,7 @@ int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) /* =========================================================================== */ -int ZEXPORT compress (dest, destLen, source, sourceLen) +int ZEXPORT compress(dest, destLen, source, sourceLen) Bytef *dest; uLongf *destLen; const Bytef *source; @@ -78,7 +78,7 @@ int ZEXPORT compress (dest, destLen, source, sourceLen) If the default memLevel or windowBits for deflateInit() is changed, then this function needs to be updated. */ -uLong ZEXPORT compressBound (sourceLen) +uLong ZEXPORT compressBound(sourceLen) uLong sourceLen; { return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +