Lines Matching full:gzip
1 /* gzjoin -- command to join gzip files into one gzip file
33 gzjoin takes one or more gzip files on the command line and writes out a
34 single gzip file that will uncompress to the concatenation of the
35 uncompressed data from the individual gzip files. gzjoin does this without
41 gzjoin does not do an integrity check on the input gzip files other than
42 checking the gzip header and decompressing the compressed data. They are
45 Each joint between gzip files removes at least 18 bytes of previous trailer
47 compressed data in order to connect the streams. The output gzip file
48 has a minimal ten-byte gzip header with no file name or modification time.
202 /* skip the gzip header from file in */
207 /* verify gzip magic header and compression method */
209 bail(in->name, " is not a valid gzip file");
263 /* Write header for gzip file to out and initialize trailer. */
274 the output, and the gzip trailer is written. crc and tot maintains the
276 gzip file is written to out. gzinit() must be called before the first call
277 of gzcopy() to write the gzip header and to initialize crc and tot. */
290 /* open gzip file and skip header */
418 /* write trailer if this is the last gzip file */
425 /* join the gzip files on the command line, write result to stdout */
441 /* join gzip files on command line and write to stdout */