Skip to content
Snippets Groups Projects
Commit a5773513 authored by Mark Adler's avatar Mark Adler
Browse files

Make the names in functions declarations identical to definitions.

parent 723e928b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -349,9 +349,9 @@ int ZEXPORT gzputc(file, c)
}
 
/* -- see zlib.h -- */
int ZEXPORT gzputs(file, str)
int ZEXPORT gzputs(file, s)
gzFile file;
const char *str;
const char *s;
{
z_size_t len, put;
gz_statep state;
Loading
Loading
@@ -366,12 +366,12 @@ int ZEXPORT gzputs(file, str)
return -1;
 
/* write string */
len = strlen(str);
len = strlen(s);
if ((int)len < 0 || (unsigned)len != len) {
gz_error(state, Z_STREAM_ERROR, "string length does not fit in int");
return -1;
}
put = gz_write(state, str, len);
put = gz_write(state, s, len);
return put < len ? -1 : (int)len;
}
 
Loading
Loading
Loading
Loading
@@ -149,7 +149,7 @@ local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes,
local void compress_block OF((deflate_state *s, const ct_data *ltree,
const ct_data *dtree));
local int detect_data_type OF((deflate_state *s));
local unsigned bi_reverse OF((unsigned value, int length));
local unsigned bi_reverse OF((unsigned code, int len));
local void bi_windup OF((deflate_state *s));
local void bi_flush OF((deflate_state *s));
 
Loading
Loading
Loading
Loading
@@ -1740,7 +1740,7 @@ ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
if (crc != original_crc) error();
*/
 
ZEXTERN uLong ZEXPORT crc32_z OF((uLong adler, const Bytef *buf,
ZEXTERN uLong ZEXPORT crc32_z OF((uLong crc, const Bytef *buf,
z_size_t len));
/*
Same as crc32(), but with a size_t length.
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment