lz4/examples
Takayuki Matsuoka 28cb94f53a Fix -Wshorten-64-to-32 warning
Fix -Wshorten-64-to-32 warning

The following CI test (macOS) reports "-Wshorten-64-to-32" warning

make V=1 clean test MOREFLAGS='-Werror -Wconversion -Wno-sign-conversion'

```
blockStreaming_lineByLine.c:68:54: error: implicit conversion loses integer precision: 'const size_t' (aka 'const unsigned long') to 'int' [-Werror,-Wshorten-64-to-32]
                lz4Stream, inpPtr, cmpBuf, inpBytes, cmpBufBytes, 1);
                                                     ^~~~~~~~~~~
```
2021-05-30 16:49:24 +09:00
..
.gitignore refactored simple_buffer.c example (#363) 2017-06-08 12:51:56 -07:00
blockStreaming_doubleBuffer.c created LZ4_initStream() 2019-04-05 12:56:26 -07:00
blockStreaming_doubleBuffer.md Update blockStreaming_doubleBuffer.md 2019-07-03 11:50:38 +02:00
blockStreaming_lineByLine.c Fix -Wshorten-64-to-32 warning 2021-05-30 16:49:24 +09: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 make _fast*() decoder generate a deprecation warning 2019-04-04 12:47:36 -07:00
COPYING Clarified license (#115, #244) 2016-11-01 19:14:04 -07:00
dictionaryRandomAccess.c Fix -Wshorten-64-to-32 warning 2021-05-27 21:12:39 +09:00
dictionaryRandomAccess.md Add dictionary random access example 2016-11-09 17:39:56 -08:00
frameCompress.c fixed #778 2019-08-21 13:44:24 +02:00
HCStreaming_ringBuffer.c travisCI: added ASAN fuzzer tests 2019-06-28 20:55:47 -07:00
Makefile updated license & header dates 2020-11-25 14:45:14 -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 keep the "lorem ipsum" topic of the example string 2019-07-11 17:29:16 -07:00
streaming_api_basics.md Fix typos in streaming_api_basics.md 2019-11-30 06:58:54 -05:00

LZ4 examples

All examples are GPL-v2 licensed.

Documents