log lib/bunzip.c @ 847:2506cbdccd20

age author description
Tue, 13 Nov 2012 17:14:08 -0600 Rob Landley Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Mon, 05 Jan 2009 01:05:43 -0600 Rob Landley Add -N, -I, -L, and -P options to cksum.
Sat, 03 Jan 2009 18:15:18 -0600 Rob Landley Check in crc_init needed by cksum. (Oops.)
Sat, 28 Jun 2008 01:07:34 -0500 Rob Landley A pathological case of huffman coding that uses 8 bits to code each of 256
Sat, 19 Jan 2008 17:08:39 -0600 Rob Landley Zap toys/Config.in and instead create generated/Config.in from contents of
Mon, 24 Dec 2007 19:53:20 -0600 Rob Landley Major refactoring of bunzip.c in preparation for doing a multi-threaded version.
Thu, 15 Nov 2007 18:30:30 -0600 Rob Landley Remove trailing whitespace (thanks to Charlie Shepherd), and a couple comment
Sat, 03 Feb 2007 14:10:00 -0500 Rob Landley Teach build to build only the toys/*.c selected in .config, and teach
Sat, 20 Jan 2007 12:30:19 -0500 Rob Landley Merge a memset with an existing loop, tweak comments.
Fri, 19 Jan 2007 16:31:11 -0500 Rob Landley Merge two similar loops and expand a comment.
Fri, 19 Jan 2007 16:01:54 -0500 Rob Landley Another suggestion from Manuel: Grab 2 bits instead of 1 inside a loop. Saves
Thu, 18 Jan 2007 22:00:12 -0500 Rob Landley In bunzip replace setjmp/longjmp handling with error_exit(), replace string
Thu, 18 Jan 2007 18:16:11 -0500 Rob Landley More optimizations originally suggested by Manuel Nova: Use a sentinel value
Wed, 17 Jan 2007 18:24:17 -0500 Rob Landley Minor cleanups.
Wed, 17 Jan 2007 18:18:50 -0500 Rob Landley Turn a memmove into a while(), reducing running time by 3.5% in my tests.
Wed, 17 Jan 2007 16:58:51 -0500 Rob Landley Another application of Manuel Nova's "math instead of ifs" trick. Saves 17b.
Wed, 17 Jan 2007 16:56:28 -0500 Rob Landley Minor optimization the compiler already does for us (according to bloatcheck),
Wed, 17 Jan 2007 16:31:23 -0500 Rob Landley Fix off by one error in a test.
Wed, 17 Jan 2007 13:58:08 -0500 Rob Landley Comment and whitespace changes.
Tue, 16 Jan 2007 14:25:12 -0500 Rob Landley Memmove is 11 bytes shorter than the unrolled loop, and Manuel Nova pointed
Tue, 16 Jan 2007 13:26:02 -0500 Rob Landley Add a quick and dirt bzcat (stdin to stdout only for the moment) to test
Sun, 31 Dec 2006 19:10:24 -0500 Rob Landley Remove more warnings.
Sun, 26 Nov 2006 18:27:33 -0500 Rob Landley Trawling through the archives: a broken test, an unnecessary memset, and a
Sun, 26 Nov 2006 17:19:18 -0500 Rob Landley More whitespace/cowbell. (And change comment style to //.)
Sat, 25 Nov 2006 16:50:00 -0500 Rob Landley Add my old micro-bunzip library. Needs some cleanup...