lz4/examples
Yann Collet 550b40849f merge lz4opt.h into lz4hc.c
Having a dedicated file for optimal parser
made sense during its creation,
it allowed Przemyslaw to work more freely on lz4opt, with less dependency on lz4hc,
moreover, the optimal parser was more complex, with its own search functions.

Since the optimal was rewritten last year, it's now a lot lighter.
It makes more sense now to integrate it directly inside lz4hc.c,
making it easier to edit (editors are a bit "lost" inside a `*.h` dependent on its #include position),
it also reduces the number of files in the project,
which fits pretty well with lz4 objectives.
(adding lz4hc requires "just" lz4hc.h and lz4hc.c).
2018-02-25 00:32:09 -08:00
..
.gitignore refactored simple_buffer.c example (#363) 2017-06-08 12:51:56 -07:00
blockStreaming_doubleBuffer.c minor updates to examples 2017-11-24 17:18:46 -08:00
blockStreaming_doubleBuffer.md Added : doc authorship 2015-03-25 17:22:26 +01:00
blockStreaming_lineByLine.c minor updates to examples 2017-11-24 17:18:46 -08:00
blockStreaming_lineByLine.md Added : doc authorship 2015-03-25 17:22:26 +01:00
blockStreaming_ringBuffer.c minor updates to examples 2017-11-24 17:18:46 -08:00
compress_functions.c Several changes to address a few concerns from Yann. See Google Group LZ4c topic 'Reusing compression/decompression resources' for details. 2015-10-29 21:47:13 -05:00
COPYING Clarified license (#115, #244) 2016-11-01 19:14:04 -07:00
dictionaryRandomAccess.c minor updates to examples 2017-11-24 17:18:46 -08:00
dictionaryRandomAccess.md Add dictionary random access example 2016-11-09 17:39:56 -08:00
frameCompress.c modified decompression part of frameCompress.c 2018-02-01 02:48:20 -08:00
HCStreaming_ringBuffer.c minor updates to examples 2017-11-24 17:18:46 -08:00
Makefile merge lz4opt.h into lz4hc.c 2018-02-25 00:32:09 -08:00
printVersion.c minor updates to examples 2017-11-24 17:18:46 -08:00
README.md Add dictionary random access example 2016-11-09 17:39:56 -08:00
simple_buffer.c fixed minor scan-build warning 2017-06-08 15:04:55 -07:00
streaming_api_basics.md Remove whitespace from ends of lines 2016-02-12 22:49:52 -08:00

LZ4 examples

All examples are GPL-v2 licensed.

Documents