Home | History | Annotate | Download | only in examples

Lines Matching full:compress

15    1.2  20 Mar 2005  Add Unix compress (LZW) decompression
43 gun will also decompress files made by Unix compress, which uses LZW
45 magic header bytes. Since the end of Unix compress stream is marked by the
46 end-of-file, they cannot be concantenated. If a Unix compress stream is
191 /* Decompress a compress (LZW) file from indp to outfile. The compress magic
211 unsigned flags; /* compress flags, then block compress flag */
225 /* process remainder of compress header -- a flags byte */
240 flags &= 0x80; /* true if block compress */
319 to detect random or corrupted input after a compress header.
409 break; /* not a gzip or compress header */
413 /* process a compress (LZW) file -- can't be concatenated after this */