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

Comparing Compress-LZF/lzf_c.c (file contents):
Revision 1.5 by root, Fri Jul 7 15:47:10 2006 UTC vs.
Revision 1.6 by root, Fri Feb 16 22:11:17 2007 UTC

82 82
83unsigned int 83unsigned int
84lzf_compress (const void *const in_data, unsigned int in_len, 84lzf_compress (const void *const in_data, unsigned int in_len,
85 void *out_data, unsigned int out_len 85 void *out_data, unsigned int out_len
86#if LZF_STATE_ARG 86#if LZF_STATE_ARG
87 , LZF_STATE *htab 87 , LZF_STATE htab
88#endif 88#endif
89 ) 89 )
90{ 90{
91#if !LZF_STATE_ARG 91#if !LZF_STATE_ARG
92 LZF_STATE htab; 92 LZF_STATE htab;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines