summaryrefslogtreecommitdiffstats
path: root/programs/lz4cli.c
Commit message (Collapse)AuthorAgeFilesLines
* improved MinGW supportPrzemyslaw Skibinski2016-12-211-0/+3
|
* reordered definitons in platform.hPrzemyslaw Skibinski2016-12-201-0/+9
|
* improved platform.hPrzemyslaw Skibinski2016-12-201-2/+2
|
* executables use platform.hPrzemyslaw Skibinski2016-12-201-22/+2
|
* fix #285 : lz4cat doesn't work with stdin (reported by @beiDei8z)Yann Collet2016-12-081-5/+8
|
* fixed path-1, as suggested by @t-matYann Collet2016-12-081-1/+1
|
* fix #284, reported by @beiDei8z : added test cases for path/to/lz4catYann Collet2016-12-071-0/+1
|
* fix : invocation of path/to/unlz4 (#284), reported by @beiDei8zYann Collet2016-12-071-1/+8
|
* fix #283 : implement LZ4_versionString().Yann Collet2016-12-041-1/+1
|
* fixed minor display error when using -rYann Collet2016-11-281-21/+24
|
* added a few datesYann Collet2016-11-211-1/+1
|
* fixed double ;; for VisualYann Collet2016-11-151-1/+1
|
* fixed minor coverity warningsYann Collet2016-11-151-14/+8
|
* minor code refactoringYann Collet2016-11-141-1/+1
|
* cli : add --help commandYann Collet2016-11-131-0/+1
|
* custom block sizePrzemyslaw Skibinski2016-11-101-12/+27
|
* fixed some static analyzer warningYann Collet2016-11-101-4/+4
|
* fixed sparse on stdoutYann Collet2016-11-101-7/+19
|
* fixed multiples files on lz4cat (#184, by @libor-m)Yann Collet2016-11-101-31/+33
|
* fix unused variable warningYann Collet2016-11-091-2/+1
|
* fixed synthetic benchmark modeYann Collet2016-11-091-12/+13
| | | | slightly optimized test mode
* fixed lz4catYann Collet2016-11-091-57/+60
| | | | changed lz4-test order
* bench.c: support notification levelPrzemyslaw Skibinski2016-11-081-0/+3
|
* new Travis testsPrzemyslaw Skibinski2016-11-081-10/+7
|
* added --rm optionPrzemyslaw Skibinski2016-11-071-2/+4
|
* fixed --testPrzemyslaw Skibinski2016-11-071-1/+1
|
* Merge pull request #252 from inikep/devYann Collet2016-11-041-20/+44
|\ | | | | Dev
| * updated lz4cli.cPrzemyslaw Skibinski2016-11-041-7/+6
| |
| * added -r optionPrzemyslaw Skibinski2016-11-041-13/+38
| |
* | 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-041-1/+1
|
* Fix test mode and write to nullNick Terrell2016-11-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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%
* updated links to LZ4 repositoryPrzemyslaw Skibinski2016-11-031-1/+1
|
* Merge remote-tracking branch 'refs/remotes/Cyan4973/dev' into devinikep2016-09-031-41/+28
|\ | | | | | | | | # Conflicts: # programs/Makefile
| * fuzzer depends on standard C time.h onlyYann Collet2016-09-031-1/+1
| |
| * lz4cli version number from lz4.hYann Collet2016-09-031-41/+28
| |
* | update IncludePathinikep2016-09-021-3/+0
|/
* -b# and -e# options from zstdinikep2016-09-021-11/+29
|
* fix mingw64 compilation warningsinikep2016-09-021-1/+1
|
* 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.
* minor refactoring (coding style)Yann Collet2016-06-291-49/+30
|
* lz4cli: print library versionJohn Zhuge2016-04-011-2/+5
|
* Tweak error messageDaniel Colascione2015-09-031-1/+1
|
* Improve error messages for attempted console IODaniel Colascione2015-09-031-2/+10
|
* updated cli helpYann Collet2015-08-201-30/+40
|
* lz4cli : add one malloc testYann Collet2015-06-291-0/+1
|
* staticAnalyze use same compilation flags as normal buildYann Collet2015-06-271-5/+6
|
* Minor doc clarification on sparse mode supportYann Collet2015-06-221-1/+1
|
* Merge pull request #114 from lpsantil/djgppYann Collet2015-05-281-0/+5
|\ | | | | Djgpp
| * Fixup programs/{Makefile,lz4cli.c,lz4io.c} to build with Andrew Wu's ↵Louis P. Santillan2015-05-261-0/+5
| | | | | | | | build-djgpp cross compilers. Add some documentation in README.DJ