home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c019 / 3.ddi / UNZIP11 / UNZIP.DOC < prev    next >
Encoding:
Text File  |  1989-03-06  |  3.7 KB  |  128 lines

  1.   
  2.   
  3.                                    UnZip
  4.   
  5.                            Version 1.1ß, 03-06-89
  6.   
  7.                            Zipfile Extract Utility
  8.   
  9.                                  UnZip11.ZIP
  10.   
  11.           Copyright (C) 1989 Samuel H. Smith;  ALL RIGHTS RESERVED
  12.   
  13.   
  14.                         This program is supported by:
  15.   
  16.                               The Tool Shop BBS
  17.                                  Phoenix, AZ
  18.                              (602) 264-3969 (HST)
  19.                           (602) 279-2673 (HAYES 9600)
  20.   
  21.   
  22. 'UnZip' is a small zipfile extract utility.   It is written to be as
  23. small portable as possible and is intended to be starting point for
  24. implementation of .ZIP files in non-IBM environments.
  25.  
  26. Source code is provided in C and Turbo Pascal.  If you port this program
  27. to a non-IBM system, I would appreciate a copy of the ported source and
  28. exe files.
  29.  
  30.  
  31. Usage
  32. -----
  33.    unzip filename               ;C version
  34.    unz filename                 ;pascal version
  35.  
  36. Example
  37. -------
  38.    unzip test
  39.    unzip test.z
  40.  
  41.  
  42. Revision history
  43. ----------------
  44.  
  45. 3-3-89
  46.    Initial alpha test release.  The 'unshrink' procedure is now working
  47.    partially.  It stops when the 'partial clear' code is received (this
  48.    happens after about 30k of text has already been seen).  Look for a
  49.    fix to this last unshrink bug in the next week.
  50.  
  51. 3-5-89
  52.    First fully operational release.  Does not implement CRC verification,
  53.    but should correctly unzip all compression methods.
  54.  
  55. 3-6-89
  56.    Corrected end-of-file detection in both shrink and reduce expanders.
  57.    Resulting files should now always have the correct size.  Added ".ZIP"
  58.    default to unzip.c to match calling conventions of unz.pas.
  59.  
  60. LICENSE
  61. =======
  62.  
  63.    SourceWare: What is it?
  64.    -----------------------
  65.  
  66.    SourceWare is my name for a unique concept in user supported 
  67.    software. 
  68.    
  69.    Programs distributed under the SourceWare concept always offer
  70.    complete source code. 
  71.  
  72.    This package can be freely distributed so long as it is not 
  73.    modified or sold for profit.  If you find that this program is 
  74.    valuable,  you can send me a donation for what you think it is 
  75.    worth.  I suggest about $20. 
  76.  
  77.    Send your contributions to:
  78.       Samuel. H. Smith
  79.       5119 N. 11 ave 332
  80.       Phoenix, Az 85013
  81.  
  82.  
  83.    Why SourceWare?
  84.    ---------------
  85.  
  86.    Why do I include source code?  Why isn't the donation 
  87.    manditory?  The value of good software should be self-evident.  
  88.    The source code is the key to complete understanding of a 
  89.    program.  You can read it to find out how things are done.  You 
  90.    can also change it to suit your needs, so long as you do not 
  91.    distribute the modified version without my consent. 
  92.  
  93.  
  94.    Copyright
  95.    ---------
  96.  
  97.    If you modify this program, I would appreciate a copy of the 
  98.    new source code.   I am holding the copyright on the source 
  99.    code, so please don't delete my name from the program files or 
  100.    from the documentation. 
  101.  
  102.  
  103.  
  104.  
  105. SUPPORT
  106. =======
  107.  
  108.    I work very hard to produce a software package of the highest 
  109.    quality and functionality.  I try to look into all reported 
  110.    bugs, and will generally fix reported problems within a few 
  111.    days.  
  112.  
  113.    Since this is user supported software under the SourceWare 
  114.    concept,  I don't expect you to contribute if you don't like it 
  115.    or if it doesn't meet your needs. 
  116.  
  117.    If you have any questions, bugs, or suggestions, please contact 
  118.    me at: 
  119.        The Tool Shop BBS
  120.       (602) 264-3969 (HST 9600)
  121.       (602) 279-2673 (HAYES 9600)
  122.  
  123.    The latest version is always available for downloading. 
  124.  
  125.    Enjoy!     Samuel H. Smith
  126.               Author and Sysop of The Tool Shop.
  127.    
  128.