X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=gzip.h;h=e3cc75c355fe41a577435f8211d08e6517dd4481;hb=15eea35eec74f226bb721ebf0b3ee7473b1a5ff9;hp=24a0e12bf3d39c6d16b78e1ab6f10d20a1214fa6;hpb=302189d124ed5849c2589ea92e912eb24fdc4ab3;p=gzip diff --git a/gzip.h b/gzip.h index 24a0e12..e3cc75c 100644 --- a/gzip.h +++ b/gzip.h @@ -133,6 +133,7 @@ EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */ extern unsigned insize; /* valid bytes in inbuf */ extern unsigned inptr; /* index of next byte to be processed in inbuf */ extern unsigned outcnt; /* bytes in output buffer */ +extern int rsync; /* deflate into rsyncable chunks */ extern off_t bytes_in; /* number of input bytes */ extern off_t bytes_out; /* number of output bytes */ @@ -272,7 +273,7 @@ extern int unpack OF((int in, int out)); extern int unlzh OF((int in, int out)); /* in gzip.c */ -RETSIGTYPE abort_gzip OF((void)); +RETSIGTYPE abort_gzip_signal OF((void)); /* in deflate.c */ void lm_init OF((int pack_level, ush *flags)); @@ -281,7 +282,7 @@ off_t deflate OF((void)); /* in trees.c */ void ct_init OF((ush *attr, int *method)); int ct_tally OF((int dist, int lc)); -off_t flush_block OF((char *buf, ulg stored_len, int eof)); +off_t flush_block OF((char *buf, ulg stored_len, int pad, int eof)); /* in bits.c */ void bi_init OF((file_t zipfile));