home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / arc / lino / doc / libs.doc < prev    next >
Encoding:
Text File  |  1995-04-13  |  1.5 KB  |  60 lines

  1.  
  2.  **** LINO - libs.doc  ****
  3.  
  4.  
  5.  My original intention was to write a harddisk compressor, so I tried to
  6.  create fast compressors with a minimal need of memory.
  7.  I combined a fast and a good way to find duplicated strings, with a faster
  8.  and a better way of coding. The result are four libraries, to supply
  9.  different systems and requirements.
  10.  
  11.  There are three modes (0-33, 34-66, 67-100), default mode is 50
  12.  Default chunksize is 32.
  13.  
  14.  
  15.  Length of the libraries
  16.  
  17.  xpkLIN1.library: 5544 bytes
  18.  xpkLIN2.library: 3616 bytes
  19.  xpkLIN3.library: 5776 bytes
  20.  xpkLIN4.library: 4152 bytes
  21.  
  22.  
  23.  The libraries don't need much memory, but if there isn't enough memory
  24.  available, compression mode will be reduced.
  25.  
  26.  
  27.  Memory use in kb
  28.  
  29.  LIB  | Mode   |Compr. (larg.) | Expand
  30. ---------------------------------------
  31.  LIN1 | 0-33   |     8     (8)   |   0
  32.  LIN1 | 34-66  |    32    (32)   |   0
  33.  LIN1 | 67-100 |    33    (33)   |   0
  34.  
  35.  LIN2 | 0-33   |    18    (18)   |   0
  36.  LIN2 | 34-66  |    34    (34)   |   0
  37.  LIN2 | 67-100 |    66    (66)   |   0
  38.  
  39.  LIN3 | 0-33   |    52    (44)   |   0
  40.  LIN3 | 34-66  |    76    (44)   |   0
  41.  LIN3 | 67-100 |    76    (44)   |   0
  42.  
  43.  LIN4 | 0-33   |    98    (66)   |   0
  44.  LIN4 | 34-66  |    98    (66)   |   0
  45.  LIN4 | 67-100 |    98    (66)   |   0
  46.  
  47.  
  48.  Read file statistics for further informations.
  49.  
  50.  
  51.  
  52.  
  53.  Return-Codes:
  54.  
  55.  OK        =    0    No Error
  56.  NOMEM        =  -7    Not enough memory
  57.  EXPANSION  = -17    Impossible to pack chunk (File already packed ?)
  58.  WRONGPW    = -32    Wrong password
  59.  CORRUPTPKD = -14    packed chunk (file) is corrupt
  60.