summaryrefslogtreecommitdiffstats
path: root/programs/lz4io.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* removed one mallocYann Collet2015-06-291-5/+6
|
* lz4io : removed one mallocYann Collet2015-06-291-3/+4
|
* Merge pull request #114 from lpsantil/djgppYann Collet2015-05-281-5/+10
|\ | | | | Djgpp
| * Fixup programs/{Makefile,lz4cli.c,lz4io.c} to build with Andrew Wu's ↵Louis P. Santillan2015-05-261-5/+10
| | | | | | | | build-djgpp cross compilers. Add some documentation in README.DJ
* | Fixed : default sparse mode disabled on stdout, to support ` >>` ↵Yann Collet2015-05-251-9/+7
| | | | | | | | redirection scenario reported by Takayuki Matsuoka (#110)
* | Fixed : LZ4IO exits too early when frame crc not present, reported by ↵Yann Collet2015-05-201-1/+2
| | | | | | | | Yongwoon Cho (#106)
* | minor test refactorYann Collet2015-05-181-2/+3
| |
* | Fixed sparse issue with non seekable streams (#105)Yann Collet2015-05-181-6/+12
|/
* Added compilation flag -Wcast-qualYann Collet2015-05-061-4/+4
|
* Updated lz4hc APIYann Collet2015-05-031-1/+1
|
* New lz4 API, using LZ4_compress_fast()Yann Collet2015-05-031-1/+1
|
* streaming API : Improved ring buffer managementYann Collet2015-04-241-18/+16
|
* Removed obsolete functions from lz4 cliYann Collet2015-04-211-3/+9
|
* Removed LZ4_compress() (obsolete) from lz4Yann Collet2015-04-211-6/+6
|
* Fixed frame concatenationYann Collet2015-04-201-3/+5
|
* Fixed unfinished frame (issue #75)Yann Collet2015-04-201-8/+13
|
* Sparse file support is now enabled by defaultYann Collet2015-04-171-1/+1
|
* Reclassified some notification messages as errorsYann Collet2015-04-161-2/+2
|
* stronger arm testsYann Collet2015-04-161-2/+2
|
* fix minor "divide by zero" riskYann Collet2015-04-161-1/+2
|
* fixed minor leakYann Collet2015-04-161-0/+1
|
* minor optimization for small filesYann Collet2015-04-161-38/+53
|
* Multiple files decompression refactoringYann Collet2015-04-151-93/+86
|
* Issue#90 : Add LZ4F_ prefixTakayuki MATSUOKA2015-04-141-3/+3
| | | | | - Add LZ4F_ prefix to LZ4 frame related enums. - Also add conditional macro LZ4F_DISABLE_OLD_ENUMS for testing and users who prefer strict prefixes.
* Changes LZ4F_compressBound() definition using NULL prefsPtr to cover worst ↵Yann Collet2015-04-141-1/+1
| | | | case instead of default.
* lz4io refactoringYann Collet2015-04-141-79/+66
|
* Fix leak issue with compression of multiple filesYann Collet2015-04-141-107/+167
|
* Improved performance when compressing a lot of small filesYann Collet2015-04-131-101/+172
|
* minor compatibility fixesYann Collet2015-04-131-9/+12
|
* Merge pull request #86 from KyleJHarper/origin/r129/multiple_inputs_patchYann Collet2015-04-131-0/+47
|\ | | | | Origin/r129/multiple inputs patch
| * Added support for continuation of file compression and decompression if ↵Kyle J Harper2015-04-121-3/+22
| | | | | | | | input files are missing. Should more closely match gzip/bzip2/xz and so forth. Also removed a debug print accidentally left in.
| * Added new LZ4IO_decompressMultipleFilenames to allow decompression of ↵Kyle J Harper2015-04-121-0/+28
| | | | | | | | multiple files with the -m switch added in r128 (ref: google code issue 151). Limitation: will only process files matching LZ4_EXTENSION macro, which for now seems reasonable.
* | Fixed : a few minor coverity warningsYann Collet2015-04-121-6/+16
| |
* | fixed minor sanitize warningYann Collet2015-04-111-3/+3
| |
* | Fixed a few minor sanitize warningsYann Collet2015-04-101-3/+2
| |
* | Fixed a few warnings from -fsanitize=undefinedYann Collet2015-04-091-1/+8
| |