Update compat/zlib.h

This commit is contained in:
twinaphex 2017-04-10 23:17:30 +02:00
parent 29b9c2e14d
commit c6887aa999
1 changed files with 2 additions and 2 deletions

View File

@ -1204,8 +1204,8 @@ typedef int (*out_func) (void FAR *, unsigned char FAR *, unsigned);
compress() or compress2() call to allocate the destination buffer. compress() or compress2() call to allocate the destination buffer.
*/ */
int uncompress (Bytef *dest, uLongf *destLen, int uncompress (unsigned char *dest, uint32_t *destLen,
const Bytef *source, uLong sourceLen); const unsigned char *source, uint32_t sourceLen);
/* /*
Decompresses the source buffer into the destination buffer. sourceLen is Decompresses the source buffer into the destination buffer. sourceLen is
the byte length of the source buffer. Upon entry, destLen is the total size the byte length of the source buffer. Upon entry, destLen is the total size