lz4_stream is a simple wrapper that uses C++ streams for compressing and decompressing data using the LZ4 compression library
Look at lz4_compress.cpp and lz4_decompress.cpp for example command line programs that can compress and decompress using this stream library.
mkdir build
cd build
cmake ..
make
The LZ4 compression library is required to use this library.
Ubuntu and OSX (GCC/Clang):
Windows (MS C++):
Code coverage (codecov.io):
Standard BSD 3-Clause License as used by the LZ4 library.