summaryrefslogtreecommitdiffstats
path: root/programs
Commit message (Collapse)AuthorAgeFilesLines
* implement decoder-only benchmark modeYann Collet2022-07-293-36/+123
| | | | requires an LZ4 Frame as input
* minor refactorYann Collet2022-07-291-122/+123
| | | | to prepare bench.c for multiple decoding functions.
* updated documentation of bench unitYann Collet2022-07-292-8/+21
|
* minor : fix conversion warningsYann Collet2022-07-291-25/+25
|
* support skippable frames within pipeYann Collet2022-07-151-3/+22
| | | | | | | fix #977 fseek() doesn't work for pipe, switch to "read and forget" mode in such case.
* fixed minor leakYann Collet2022-07-012-9/+5
|
* fixed -tmYann Collet2022-07-012-4/+6
| | | | which was broken up to now.
* minor refactor : EXM_THROW -> END_PROCESSYann Collet2022-07-011-76/+70
|
* fix #1086Yann Collet2022-07-011-9/+1
| | | | just remove the specific code of #704, it's not necessary and produces side effects.
* refactored logic to test special file namesYann Collet2022-07-013-58/+98
|
* fail on requesting to process 3+ file names in legacy modeYann Collet2022-07-012-27/+25
| | | | warning only if -f is selected.
* Correct unit prefix names in programs/lz4io.cWHR2022-05-241-5/+5
|
* --test and --list return an error when parsing invalid fileYann Collet2022-01-292-34/+55
| | | | fix #1045
* added testYann Collet2022-01-292-2/+5
| | | | for --list from stdin
* Allow '--list' with stdin if it is a regular fileWHR2021-12-143-7/+27
|
* Fix typos found by codespellDimitri Papadopoulos2021-11-251-4/+4
|
* make UNAME externally definableYann Collet2021-08-161-1/+2
| | | | | | | on top of providing a central definition place, which eases maintenance, it might also help for #1021. Also : updated doc
* nit(programs/platform.h): replace Unicode character #1018Nate2021-08-071-1/+1
| | | On line 83, U+2013 was replaced with U+002D in order to improve compatibility with MSVC 2019 and older compilers.
* Merge pull request #999 from pekdon/solaris-10Yann Collet2021-08-061-1/+7
|\ | | | | add -lrt on Solaris 10, required for nanosleep
| * add -lrt on Solaris 10, required for nanosleepClaes Nästén2021-06-021-1/+7
| |
* | Print target directories during 'make install'.Eddy Jansson2021-07-241-2/+2
|/ | | | This takes #975 to its logical conclusion.
* fix minor pedantic warningsYann Collet2020-12-011-7/+9
| | | | initialization and conversion
* Merge branch 'dev' into MakefileYann Collet2020-12-011-3/+3
|\ | | | | | | remove `LN_S`
| * install links over existing installYann Collet2020-11-301-3/+3
| | | | | | | | ensures links are created
* | refactor MakefileYann Collet2020-12-011-25/+29
|/ | | | | remove usage of include Makefile.inc in too Makefile as it seems to somehow unexport CFLAGS ...
* updated license & header datesYann Collet2020-11-2511-12/+11
|
* update docYann Collet2020-11-151-1/+1
|
* Merge pull request #953 from lz4/vs2005Yann Collet2020-11-151-3/+3
|\ | | | | better MSVC conformance
| * better visual conformanceYann Collet2020-11-151-3/+3
| | | | | | | | | | | | only include <intrin.h> on vs2005+ (#947) remove some useless #pragma fix a few minor Visual warnings
* | fix minor parse warningYann Collet2020-11-141-1/+1
| |
* | all usages of prefs within lz4io are constYann Collet2020-11-143-45/+48
| |
* | LZ4IO_openDstFile() doesn't need pref mutabilityYann Collet2020-11-142-33/+36
| |
* | fixed force --sparse modeYann Collet2020-11-141-1/+1
|/
* dictionary functions don't need prefs mutabilityYann Collet2020-11-141-4/+5
|
* LZ4IO_createDict() doesn't need prefsYann Collet2020-11-141-27/+30
|
* LZ4IO_decompressSrcFile() doesn't need mutable prefsYann Collet2020-11-141-5/+5
|
* selectDecoder() doesn't need mutable prefsYann Collet2020-11-141-4/+4
|
* LZ4IO_passThrough() doesn't need prefsYann Collet2020-11-141-9/+14
|
* LZ4IO_decompressLZ4F() doesn't need mutable prefsYann Collet2020-11-141-4/+14
|
* LZ4IO_decodeLegacyStream() doesn't need mutable prefsYann Collet2020-11-141-9/+9
|
* LZ4IO_fwriteSparse doesn't need writable prefsYann Collet2020-11-141-5/+10
|
* minor refactorYann Collet2020-11-131-32/+28
| | | | mostly on the compression code path
* minor refactor of lz4ioYann Collet2020-11-131-96/+95
| | | | | for readability. Mostly around --list capability
* fix minor static analyzer warningsYann Collet2020-09-303-17/+15
| | | | | detected by scan-build and cppcheck fix #786
* fixup: Portable fileno()Niklas Hambüchen2020-08-251-1/+10
|
* fixup: C90 compliance, clean up stat() types/callsNiklas Hambüchen2020-08-251-27/+31
|
* Use fstat() to determine file size.Niklas Hambüchen2020-08-242-3/+28
| | | | | | | | | | | | This allows us to get the file size even when the input file is passed via stdin. This fixes `--content-size` not working in situations like $ lz4 -v --content-size < /tmp/test > /tmp/test.lz4 Warning : cannot determine input content size With this change, it works. Also helps with #904.
* added target lz4-wlibYann Collet2020-08-112-6/+21
| | | | | | | | variant of lz4 linking to liblz4 dynamic library requires the dynamic library to expose static-only symbols (experimental API) Example for #888
* Implement -m option with legacy format on cliFilipe Calasans2020-02-082-4/+58
|
* Fix lz4cli --list optionFilipe Calasans2020-02-072-5/+6
|