LZW Compression
---------------
Include File : lzw.h (*.inc)

  The LZW functions simply compress and decompress data in memory buffers.

LZW Compress
------------
dword lzw_compress(dest,src,size)
  This is used to compress src and placing it into dest for size bytes.
  It returns the size of the outputed data.

LZW Decompress
--------------
void lzw_decompress(dest,src)
  This is used to decompress src and places the data
  into dest.  Returns only a error code if an error occurs.

Notes
-----
That's it, plan and simple.


  
