Skip to content

Commit

Permalink
update lz4
Browse files Browse the repository at this point in the history
  • Loading branch information
dnasdw committed Apr 20, 2019
1 parent 7af38f6 commit 3315bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dep/lz4
Submodule lz4 updated 63 files
+108 −0 .circleci/config.yml
+3 −0 .gitignore
+132 −96 .travis.yml
+25 −8 Makefile
+21 −0 NEWS
+28 −21 README.md
+0 −38 circle.yml
+10 −4 contrib/cmake_unofficial/CMakeLists.txt
+16 −14 contrib/gen_manual/gen_manual.cpp
+39 −0 contrib/meson/GetLz4LibraryVersion.py
+55 −0 contrib/meson/InstallSymlink.py
+34 −0 contrib/meson/README.md
+42 −0 contrib/meson/contrib/gen_manual/meson.build
+10 −0 contrib/meson/contrib/meson.build
+49 −0 contrib/meson/examples/meson.build
+57 −0 contrib/meson/lib/meson.build
+128 −0 contrib/meson/meson.build
+24 −0 contrib/meson/meson_options.txt
+52 −0 contrib/meson/programs/meson.build
+93 −0 contrib/meson/tests/meson.build
+29 −0 contrib/snap/README.md
+31 −0 contrib/snap/snapcraft.yaml
+ doc/images/usingCDict_1_8_2.png
+46 −38 doc/lz4_Block_format.md
+11 −8 doc/lz4_Frame_format.md
+225 −157 doc/lz4_manual.html
+74 −32 doc/lz4frame_manual.html
+1 −1 examples/blockStreaming_doubleBuffer.c
+1 −1 examples/blockStreaming_lineByLine.c
+13 −13 examples/compress_functions.c
+2 −2 examples/dictionaryRandomAccess.c
+36 −23 examples/frameCompress.c
+2 −3 examples/simple_buffer.c
+26 −7 lib/Makefile
+58 −9 lib/README.md
+0 −62 lib/dll/liblz4.def
+649 −280 lib/lz4.c
+258 −186 lib/lz4.h
+239 −185 lib/lz4frame.c
+120 −46 lib/lz4frame.h
+210 −144 lib/lz4hc.c
+169 −81 lib/lz4hc.h
+375 −239 lib/xxhash.c
+128 −93 lib/xxhash.h
+14 −14 programs/Makefile
+20 −7 programs/README.md
+5 −2 programs/bench.c
+20 −4 programs/lz4.1
+23 −1 programs/lz4.1.md
+110 −54 programs/lz4cli.c
+242 −139 programs/lz4io.c
+34 −15 programs/lz4io.h
+1 −1 programs/platform.h
+38 −24 programs/util.h
+6 −1 tests/.gitignore
+79 −18 tests/Makefile
+311 −0 tests/checkFrame.c
+94 −43 tests/frametest.c
+55 −23 tests/fullbench.c
+187 −115 tests/fuzzer.c
+248 −0 tests/roundTripTest.c
+72 −0 tests/test_custom_block_sizes.sh
+6 −11 visual/VS2017/lz4.sln

0 comments on commit 3315bf8

Please sign in to comment.