puzzles: compress extensive help text

This is only really needed to save a few bytes on the c200v2, but
since it adds negligible overhead, so it's implemented for all
targets.

A stripped down version of the LZ4 reference implementation is found
in lz4tiny.c.

Change-Id: Ib914ba71c84e04da282328662c752e533912e197
This commit is contained in:
Franklin Wei 2017-08-16 11:32:28 -04:00
parent 5645135092
commit bf25f3e6e7
46 changed files with 7347 additions and 2838 deletions

View file

@ -0,0 +1 @@
void LZ4_decompress_tiny(const char* const source, char* const dest, int outputSize);