diff options
author | root <root> | 2005-03-08 19:59:52 +0000 |
---|---|---|
committer | root <root> | 2005-03-08 19:59:52 +0000 |
commit | 52d0d80a5d826b0f53ea4c00d2577ea2e4baba8f (patch) | |
tree | 82cb3abcd7af9054fa6cd35216c991b89c6df558 /lzf.h | |
parent | 674872b0d743ecd13cbcecc911ee75e54d9263a8 (diff) |
*** empty log message ***rel-1_5
Diffstat (limited to 'lzf.h')
-rw-r--r-- | lzf.h | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -48,6 +48,8 @@ ** ***********************************************************************/ +#define LZF_VERSION 0x0105 /* 1.5 */ + /* * Compress in_len bytes stored at the memory block starting at * in_data and write the result to out_data, up to a maximum length @@ -60,15 +62,16 @@ * the data uncompressed otherwise. * * lzf_compress might use different algorithms on different systems and - * thus might result in different compressed strings depending on the - * phase of the moon or similar factors. However, all these strings are - * architecture-independent and will result in the original data when - * decompressed using lzf_decompress. + * even diferent runs, thus might result in different compressed strings + * depending on the phase of the moon or similar factors. However, all + * these strings are architecture-independent and will result in the + * original data when decompressed using lzf_decompress. * * The buffers must not be overlapping. * * If the option LZF_STATE_ARG is enabled, an extra argument must be - * supplied which is not reflected in this header file. Refer to lzf_c.c. + * supplied which is not reflected in this header file. Refer to lzfP.h + * and lzf_c.c. * */ unsigned int |