home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / UNZIP20.ZIP / UNZIP.DOC < prev    next >
Encoding:
Text File  |  1989-09-09  |  3.1 KB  |  101 lines

  1.   
  2.                                    UnZip
  3.   
  4.                            Version 2.0, 09-09-89
  5.   
  6.                            Zipfile Extract Utility
  7.   
  8.                                  UnZip20.ZIP
  9.   
  10.           Copyright (C) 1989 Samuel H. Smith;  ALL RIGHTS RESERVED
  11.   
  12.   
  13. 'UnZip' is a small Zipfile extract utility.   It is written to be as
  14. small and portable as possible -- ideal as a starting point for handling
  15. .ZIP files in non-IBM environments.
  16.  
  17. Source code is provided in C and Turbo Pascal.  If you port this program
  18. to a non-IBM system, I would appreciate a copy of the ported source and
  19. exec files.
  20.  
  21.  
  22. Usage
  23. -----
  24.    unz filename[.zip]           ;pascal language version
  25.    unzip filename[.zip]         ;C language version
  26.  
  27.  
  28. Revision history
  29. ----------------
  30.  
  31. 3-3-89
  32.    Initial alpha test release.
  33.  
  34. 3-5-89
  35.    First fully operational release.  Does not implement CRC verification,
  36.    but should correctly unzip all compression methods.
  37.  
  38. 3-6-89
  39.    Corrected end-of-file detection in both shrink and reduce expanders.
  40.    Resulting files should now always have the correct size.  Added ".ZIP"
  41.    default to unzip.c to match calling conventions of unz.pas.
  42.  
  43. 3-8-89
  44.    Moved machine and operating-system specific code to a block starting
  45.    around line 180.  Added code to swap bytes on host machines that
  46.    store the high order bytes in lower address locations than the low
  47.    order bytes.
  48.  
  49. 3-15-89
  50.    Added CRC checking in UNZIP.C.  Speeded operation by about 150%.
  51.  
  52.    I'm spending my time on the C version now and don't plan to do any
  53.    further work on the pascal.  If you're using the pascal version
  54.    please contact me.
  55.  
  56. 9-9-89
  57.    Addition of new "un-implode" logic to handle new compression format
  58.    included with PKZ101.
  59.  
  60.  
  61.  
  62. LICENSE
  63. =======
  64.  
  65. You may copy and distribute this program freely, provided that:
  66.     1)   No fee is charged for such copying and distribution, and
  67.     2)   It is distributed ONLY in its original, unmodified state.
  68.  
  69. If you wish to distribute a modified version of this program, you MUST
  70. include the source code.
  71.  
  72. If you modify this program, I would appreciate a copy of the new source
  73. code.  I am holding the copyright on the source code, so please don't
  74. delete my name from the program files or from the documentation.
  75.  
  76.  
  77. SUPPORT
  78. =======
  79.  
  80. I work very hard to produce a software package of the highest quality
  81. and functionality.  I try to look into all reported bugs, and will
  82. generally fix reported problems within a few days.
  83.  
  84. IN NO EVENT WILL I BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING ANY LOST
  85. PROFITS, LOST SAVINGS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES
  86. ARISING OUT OF YOUR USE OR INABILITY TO USE THE PROGRAM, OR FOR ANY
  87. CLAIM BY ANY OTHER PARTY.
  88.  
  89. If you have any questions, bugs, or suggestions, please contact me at:
  90.  
  91.                   The Tool Shop BBS
  92.                   (602) 279-2673 (FREE LINE, USR 2400)
  93.                   (602) 264-3969 (HST 9600)
  94.                   (602) 270-0239 (HAYES 9600)
  95.  
  96. The latest version is always available for downloading.
  97.  
  98. Enjoy!     Samuel H. Smith
  99.            Author and Sysop of The Tool Shop.
  100.    
  101.