ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/lzf_c.c
(Generate patch)

Comparing liblzf/lzf_c.c (file contents):
Revision 1.37 by root, Sat Jul 18 05:59:21 2009 UTC vs.
Revision 1.38 by root, Sun May 30 05:46:56 2010 UTC

87#define expect_true(expr) expect ((expr) != 0, 1) 87#define expect_true(expr) expect ((expr) != 0, 1)
88 88
89/* 89/*
90 * compressed format 90 * compressed format
91 * 91 *
92 * 000LLLLL <L+1> ; literal 92 * 000LLLLL <L+1> ; literal, L+1=1..33 octets
93 * LLLooooo oooooooo ; backref L 93 * LLLooooo oooooooo ; backref L+1=1..7 octets, o+1=1..4096 offset
94 * 111ooooo LLLLLLLL oooooooo ; backref L+7 94 * 111ooooo LLLLLLLL oooooooo ; backref L+8 octets, o+1=1..4096 offset
95 * 95 *
96 */ 96 */
97 97
98unsigned int 98unsigned int
99lzf_compress (const void *const in_data, unsigned int in_len, 99lzf_compress (const void *const in_data, unsigned int in_len,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines