zlib: Use correct (un)signedness of char in prototypes and functions.
Also ensure we are using the same constness qualifiers.
This commit is contained in:
@@ -2,7 +2,8 @@
|
||||
; 2001-11-18, Piotr Fusik
|
||||
; 2018-05-20, Christian Kruger
|
||||
;
|
||||
; unsigned long __fastcall__ adler32 (unsigned long adler, unsigned char* buf,
|
||||
; unsigned long __fastcall__ adler32 (unsigned long adler,
|
||||
; const unsigned char* buf,
|
||||
; unsigned len);
|
||||
;
|
||||
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
; 2001-11-14, Piotr Fusik
|
||||
; 2018-05-20, Christian Kruger
|
||||
;
|
||||
; unsigned long __fastcall__ crc32 (unsigned long crc, unsigned char* buf,
|
||||
; unsigned long __fastcall__ crc32 (unsigned long crc,
|
||||
; const unsigned char* buf,
|
||||
; unsigned len);
|
||||
;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user