comparison src/lzfu.c @ 193:cf3df962f1e5 stable-0-6-37

prep for fedora build
author Carl Byington <carl@five-ten-sg.com>
date Fri, 17 Apr 2009 12:51:59 -0700
parents 6954d315aaa8
children 5c0ce43c7532
comparison
equal deleted inserted replaced
192:774b2e77eb50 193:cf3df962f1e5
41 lzfuheader lzfuhdr; // the header of the lzfu block 41 lzfuheader lzfuhdr; // the header of the lzfu block
42 unsigned char flags; // 8 bits of flags (1=2byte block pointer into the dict, 0=1 byte literal) 42 unsigned char flags; // 8 bits of flags (1=2byte block pointer into the dict, 0=1 byte literal)
43 unsigned char flag_mask; // look at one flag bit each time thru the loop 43 unsigned char flag_mask; // look at one flag bit each time thru the loop
44 uint32_t i; 44 uint32_t i;
45 char *out_buf; 45 char *out_buf;
46 uint32_t out_ptr = 0; 46 uint32_t out_ptr = 0;
47 uint32_t out_size; 47 uint32_t out_size;
48 uint32_t in_ptr; 48 uint32_t in_ptr;
49 uint32_t in_size; 49 uint32_t in_size;
50 50
51 memcpy(dict, LZFU_INITDICT, LZFU_INITLENGTH); 51 memcpy(dict, LZFU_INITDICT, LZFU_INITLENGTH);