
COMPILE
-------

The application was created on Linux system. Make utility and gcc compiler 
is needed. Use make to compile.

$ ./make


DESCRIPTION
-----------

The example application expects one command line parameter:

'x' - extract
'c' - compress. 

It reads data from the standard input and writes compressed/decompressed data
to the standard output.


USAGE EXAMPLE
-------------

$ ./utf16_compress c < README_utf16 > README_utf16.compressed
$ ./utf16_compress x < README_utf16.compressed > README_utf16.decompressed

