home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / wincom / download / uncompress.1.0.ME.cab / uncompress / UnCompress.readme < prev    next >
Encoding:
Text File  |  1990-03-23  |  977 b   |  28 lines

  1. Decomp
  2. ======
  3.  
  4. Compress is the standard way (nowadays) to compress files on Unix systems.
  5. The source was distributed on comp.sources.unix, volume2
  6.  
  7. DECOMP is modified for MS-DOS, and decompresses only.
  8.  
  9. Usage : DECOMP infile outfile
  10.  
  11. The program can be greedy for space, especially if the Unix host used 16-bit
  12. compression (they usually do).  In the worst case a 'far heap size' of
  13. 200kbytes is needed.  If the memory allocation fails, the size is quoted so
  14. you can know how short you are.  With smaller files less space is used; the
  15. allocation does not exceed three times the file size.
  16.  
  17. This version was compiled under Turbo C, small model.  It uses huge pointers
  18. to manage large arrays.
  19.  
  20. B.D. Ripley
  21.  
  22. b.d.ripley@uk.ac.strath.vaxa
  23.  
  24. 23/3/90 revised to circumvent 2 Turbo C bugs.
  25. (a) The file size is sometimes negative on files larger than 32k.
  26. (b) logical operations on long ints sign extend from bit 15
  27. Thanks to Kevin B Black for spotting these.
  28.