summaryrefslogtreecommitdiff
path: root/archival/libunarchive/decompress_unlzma.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* s/#ifdef CONFIG_/#if ENABLE_/gDenis Vlasenko2007-08-131-3/+5
|
* diff: shrink code (-85 bytes):Denis Vlasenko2007-06-121-5/+5
| | | | | | | | | | | | function old new delta fiddle_sum 8 - -8 diffreg 2717 2690 -27 prepare 334 284 -50 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/2 up/down: 0/-85) Total: -85 bytes s/ATTRIBUTE_ALWAYS_INLINE/ALWAYS_INLINE/g
* rmp: add optional support for bz2 data. +50 bytes of codeDenis Vlasenko2007-06-081-1/+1
|
* Stop tracking buffer size - it is a constant.Denis Vlasenko2007-01-051-25/+34
| | | | | | | | Stop ignoring write errors. Fix bugs in this line: rc->buffer_size = read(rc->fd, RC_BUFFER, rc->buffer_size); (a) should use safe_read() (b) just ONE short read (e.g. 4 bytes) will make ALL future reads short!
* simplify access to buffer, making code a bit smallerDenis Vlasenko2007-01-051-80/+90
|
* g[un]zip: add support for -v (verbose).Denis Vlasenko2006-10-011-4/+12
| | | | | Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-2/+1
|
* Since rangecoder is just a bunch of C functions, move it into the one userRob Landley2006-06-201-20/+144
| | | | | (decompress_unlzma.c). Also a slight #include cleanup, and I've been meaning to put #include <unistd.h> into libbb.h since it's so darn common...
* Add SWAP_LE?? and SWAP_BE?? macros, and make things use them. Converts valuesRob Landley2006-05-291-4/+2
| | | | | to/from little endian or big endian, which is a NOP if that's what the current platform already is.
* - include proper prototypes in libunarchive.Bernhard Reutner-Fischer2006-04-021-0/+2
|
* Patch from Robert P. Day, moving byte order checks to use platform.h macros.Rob Landley2006-03-041-2/+2
|
* just whitespaceTim Riker2006-01-251-5/+5
|
* Patch from Aurelien Jacobs to add unlzma. (A new decompression type,Rob Landley2006-01-201-0/+347
see www.7-zip.org)