summaryrefslogtreecommitdiffstats
path: root/programs/lz4io.c
Commit message (Collapse)AuthorAgeFilesLines
* cli : restored command -BX to enable block checksum (#322)Yann Collet2017-08-121-5/+6
|
* report where decompression ends (#313)Yann Collet2017-06-121-39/+60
| | | | | suggested by @ehem note : only works for files < 2 GB
* LZ4_compress_HC_destSize() uses LZ4HC_compress_generic() code pathYann Collet2017-03-161-1/+1
| | | | | Limits compression level to 10, to remain compatible with Hash Chain.
* fixed Visual compilation errorYann Collet2017-03-161-1/+1
| | | | | static const must be a "constant", like a macro even if it can be determined at compile time ...
* fix #332 : do not modify /dev/null permissionsYann Collet2017-03-161-37/+31
|
* Avoid fseek()'s 2GiB barrier with MinGWPrzemyslaw Skibinski2017-02-151-16/+5
|
* use FindFirstFileA and FindNextFileA on WindowsPrzemyslaw Skibinski2016-12-221-1/+1
|
* improved commentsPrzemyslaw Skibinski2016-12-211-1/+1
|
* use fseeko for 32-bit MacOSPrzemyslaw Skibinski2016-12-211-3/+1
|
* test Large File support for Mac OS-X in 32-bits modePrzemyslaw Skibinski2016-12-211-2/+11
|
* util.h and platform.h based on zstdPrzemyslaw Skibinski2016-12-211-1/+5
|
* fixed Visual Studio compilationPrzemyslaw Skibinski2016-12-211-0/+8
|
* improved MinGW supportPrzemyslaw Skibinski2016-12-211-6/+0
|
* improved formatting (2)Przemyslaw Skibinski2016-12-201-0/+2
|
* fixed gcc warnings (2)Przemyslaw Skibinski2016-12-201-1/+3
|
* improved platform.hPrzemyslaw Skibinski2016-12-201-2/+2
|
* executables use platform.hPrzemyslaw Skibinski2016-12-201-31/+2
|
* 15-bit LZ4HC_HASH_LOGPrzemyslaw Skibinski2016-12-071-1/+2
|
* fixed gcc warningsPrzemyslaw Skibinski2016-12-071-1/+1
|
* fixed LZ4IO_compressMultipleFilenamesPrzemyslaw Skibinski2016-11-221-3/+5
|
* added a few datesYann Collet2016-11-211-1/+1
|
* fixed : shadow global variable on gcc 4.4 (minor)Yann Collet2016-11-191-5/+5
|
* fix 32-bits mode.Yann Collet2016-11-171-9/+14
| | | | | | Large File support for Mac OS-X in 32-bits mode Fixed potential undefined behavior Changed makefile for 32-bits mode
* fixed sign conversion warningYann Collet2016-11-151-3/+2
|
* fixed minor coverity warningsYann Collet2016-11-151-3/+4
|
* silence a minor msan warningYann Collet2016-11-141-1/+2
|
* Fix license and remove references to zstdNick Terrell2016-11-111-4/+4
|
* changed FUZZER_TIMEPrzemyslaw Skibinski2016-11-101-1/+1
|
* fix empty bodyYann Collet2016-11-101-1/+1
|
* fixed some static analyzer warningYann Collet2016-11-101-50/+60
|
* fixed sparse on stdoutYann Collet2016-11-101-0/+1
|
* fixed multiples files on lz4cat (#184, by @libor-m)Yann Collet2016-11-101-29/+56
|
* fixed synthetic benchmark modeYann Collet2016-11-091-2/+2
| | | | slightly optimized test mode
* Fix #243 : detect and report fread() errors, by @iyokanYann Collet2016-11-071-10/+11
|
* added --rm optionPrzemyslaw Skibinski2016-11-071-26/+22
|
* Copy owner, file permissions and modification timePrzemyslaw Skibinski2016-11-071-8/+7
|
* Rename passThrough to testModeNick Terrell2016-11-041-6/+6
|
* Fix test mode and write to nullNick Terrell2016-11-031-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-031-1/+1
|\ | | | | Dev
| * updated links to LZ4 repositoryPrzemyslaw Skibinski2016-11-031-1/+1
| |
* | fixed clang conversion warningYann Collet2016-11-031-1/+1
| |
* | check fread() operation results (#243)Yann Collet2016-11-031-9/+16
|/
* fix for ARM platformYann Collet2016-11-021-2/+2
|
* 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
|
* 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.
* remove EnablePREfast=true for Win32inikep2016-09-021-0/+1
|
* fix mingw64 compilation warningsinikep2016-09-021-0/+3
|
* Fix build error on MinGWKouhei Sutou2016-01-101-1/+1
| | | | | Header file name is case insensitive on Windows but it is case sensitive on Linux. "Windows.h" can't be found on Linux.
* Fixed a few minor visual analyzer warningsYann Collet2015-06-291-1/+1
|