summaryrefslogtreecommitdiffstats
path: root/programs
Commit message (Collapse)AuthorAgeFilesLines
* Updated man pageYann Collet2016-11-052-13/+32
|
* Merge pull request #252 from inikep/devYann Collet2016-11-045-335/+959
|\ | | | | Dev
| * fixed Travis testsPrzemyslaw Skibinski2016-11-041-9/+15
| |
| * updated #include in util.hPrzemyslaw Skibinski2016-11-041-0/+2
| |
| * updated lz4cli.cPrzemyslaw Skibinski2016-11-043-12/+12
| |
| * bench.c based on zstdPrzemyslaw Skibinski2016-11-043-329/+433
| |
| * redefined VOID for Windows/MSYSPrzemyslaw Skibinski2016-11-041-2/+1
| |
| * added -r optionPrzemyslaw Skibinski2016-11-042-13/+526
| |
* | Fix typo in lz4 manpageNick Terrell2016-11-041-1/+1
| |
* | Return error if input file does not exist.Nick Terrell2016-11-041-2/+2
|/ | | | Make `lz4 file-does-not-exist` return non-zero.
* Rename passThrough to testModeNick Terrell2016-11-043-10/+10
|
* Fix test mode and write to nullNick Terrell2016-11-033-3/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix test mode to not always return success. Don't ask for permission to overwrite `nulmark`. Before: > echo "hello world" > file > lz4 -t file successfully decoded 12 bytes > lz4 -tf file successfully decoded 12 bytes > lz4 file null Warning : /dev/null already exists Overwrite ? (Y/n) : n Error 12 : No. Operation aborted : /dev/null already exists > lz4 file /dev/null Warning : /dev/null already exists Overwrite ? (Y/n) : n Error 12 : No. Operation aborted : /dev/null already exists After: > lz4 -t file Error 44 : Unrecognized header : file cannot be decoded > lz4 -tf file Error 44 : Unrecognized header : file cannot be decoded > lz4 file null Compressed 12 bytes into 31 bytes ==> 258.33% > lz4 file /dev/null Compressed 12 bytes into 31 bytes ==> 258.33%
* Merge pull request #249 from inikep/devYann Collet2016-11-0313-3248/+73
|\ | | | | Dev
| * updated programs/README.mdPrzemyslaw Skibinski2016-11-031-3/+64
| |
| * updated .travis.ymlPrzemyslaw Skibinski2016-11-031-4/+0
| |
| * updated links to LZ4 repositoryPrzemyslaw Skibinski2016-11-037-7/+7
| |
| * test programs moved to tests/Przemyslaw Skibinski2016-11-035-3234/+2
| |
* | fixed clang conversion warningYann Collet2016-11-031-1/+1
| |
* | check fread() operation results (#243)Yann Collet2016-11-032-10/+17
|/
* fix for ARM platformYann Collet2016-11-021-2/+2
|
* Clarified license (#115, #244)Yann Collet2016-11-021-0/+7
|
* moved cmake and debian directories to contrib (#245)Yann Collet2016-11-021-5/+5
|
* fixed #247, reported by Felix BolteYann Collet2016-11-011-205/+144
|
* fixes static compilation under Windows (#246)Yann Collet2016-10-211-0/+3
|
* Merge pull request #238 from kou/add-lz4lib-apiYann Collet2016-09-231-1/+1
|\ | | | | Add LZ4LIB_API
| * Add LZ4LIB_APIKouhei Sutou2016-09-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | It's based on Zstandard's ZSTDLIB_API. See also: https://github.com/Cyan4973/lz4/issues/216#issuecomment-226245432 Deprecated functions aren't LZ4LIB_API targets. Because we don't need to export deprecated functions from now. There are same LZ4LIB_API definitions in each header files instead of including a common header file because LZ4_DEPRECATED is defined so.
* | Use lower case for header file nameKouhei Sutou2016-09-221-1/+1
|/ | | | | | "WinIoCtl.h" works on Windows because Windows uses case insensitive file system. But it doesn't work on GNU/Linux (for cross compiling with MinGW) because GNU/Linux uses case sensitive file system.
* updated uninstallYann Collet2016-09-171-17/+17
|
* removed test artefactsYann Collet2016-09-061-5/+0
|
* datagen depends on lz4.h for version stringYann Collet2016-09-052-10/+12
|
* fixed LZ4 repository linksinikep2016-09-053-6/+6
|
* Merge remote-tracking branch 'refs/remotes/Cyan4973/dev' into devinikep2016-09-036-434/+151
|\ | | | | | | | | # Conflicts: # programs/Makefile
| * lz4 version source from lz4.hYann Collet2016-09-031-5/+3
| |
| * frametest depends on standard C time.h onlyYann Collet2016-09-031-60/+19
| |
| * fullbench depends on standard C time.h onlyYann Collet2016-09-031-151/+79
| |
| * fuzzer depends on standard C time.h onlyYann Collet2016-09-033-175/+20
| |
| * lz4cli version number from lz4.hYann Collet2016-09-032-44/+31
| |
* | CFLAGS += $(MOREFLAGS)inikep2016-09-031-0/+1
| |
* | remove EnablePREfast=true for Win32inikep2016-09-021-0/+1
| |
* | update IncludePathinikep2016-09-021-3/+0
|/
* added <string.h> for strlen()inikep2016-09-021-0/+2
|
* -b# and -e# options from zstdinikep2016-09-023-25/+63
|
* fix mingw64 compilation warningsinikep2016-09-023-1/+8
|
* request POSIX.2001 definitions for fileno()Georg Sauthoff2016-08-271-1/+2
| | | | | | | | | | | | | this also fixes compilation on Solaris 10 cf. feature_test_macros(7) Linux man page: > _POSIX_SOURCE > Defining this obsolete macro with any value is equivalent to definā€ > ing _POSIX_C_SOURCE with the value 1. > > Since this macro is obsolete, its usage is generally not documented > when discussing feature test macro requirements in the man pages.
* Fixed #157 : LZ4F_getFrameInfo() fails on valid null-content frameYann Collet2016-08-111-25/+39
|
* Minor fuzzer code refactoringYann Collet2016-08-111-93/+62
|
* fixed : fuzzer test, reported by @setharnold (#203)Yann Collet2016-08-101-5/+5
|
* minor refactoring changesYann Collet2016-08-103-71/+35
|
* Updated xxhash library to v0.6.1Yann Collet2016-06-292-9/+11
|
* stronger compilation flagsYann Collet2016-06-291-4/+4
|