home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / UNZIPSRC.ZIP / UNZIP.DOC < prev    next >
Encoding:
Text File  |  1992-11-18  |  3.5 KB  |  113 lines

  1.   
  2.                                    UnZip
  3.   
  4.                            Version 2.1, 11-18-92
  5.   
  6.                            Zipfile Extract Utility
  7.   
  8.                                  UnZip21.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. 11-18-92
  61.    Updated my new phone numbers and address.
  62.  
  63.    Added logic to prevent a program crash when file comments exceed 255
  64.    characters in length.
  65.  
  66.  
  67. LICENSE
  68. =======
  69.  
  70. You may copy and distribute this program freely, provided that:
  71.     1)   No fee is charged for such copying and distribution, and
  72.     2)   It is distributed ONLY in its original, unmodified state.
  73.  
  74. If you wish to distribute a modified version of this program, you MUST
  75. include the source code.
  76.  
  77. If you modify this program, I would appreciate a copy of the new source
  78. code.  I am holding the copyright on the source code, so please don't
  79. delete my name from the program files or from the documentation.
  80.  
  81.  
  82. SUPPORT
  83. =======
  84.  
  85. I work very hard to produce a software package of the highest quality
  86. and functionality.  I try to look into all reported bugs, and will
  87. generally fix reported problems within a few days.
  88.  
  89. IN NO EVENT WILL I BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING ANY LOST
  90. PROFITS, LOST SAVINGS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES
  91. ARISING OUT OF YOUR USE OR INABILITY TO USE THE PROGRAM, OR FOR ANY
  92. CLAIM BY ANY OTHER PARTY.
  93.  
  94. If you have any questions, bugs, or suggestions, please contact me at:
  95.  
  96.            The Tool Shop BBS
  97.            Phone number                Modem type
  98.           --------------    --------------------------------
  99.           (818) 891-6780    Hayes-V 9600 (NOT v32!) FREE LINE
  100.           (818) 891-3772    US Robotics HST 9600 (NOT v32!)
  101.           (818) 891-1344    Four v.32bis/v.42bis 14400 lines!
  102.  
  103.            SAMUEL H. SMITH
  104.            P.O. BOX 4808
  105.            PANORAMA CITY, CA 91412-4808
  106.  
  107.  
  108. The latest version is always available for downloading.
  109.  
  110. Enjoy!     Samuel H. Smith
  111.            Author and Sysop of The Tool Shop.
  112.    
  113.