… | |
… | |
58 | * be considerably larger than in_len, so it makes sense to always |
58 | * be considerably larger than in_len, so it makes sense to always |
59 | * use out_len == in_len - 1), to ensure _some_ compression, and store |
59 | * use out_len == in_len - 1), to ensure _some_ compression, and store |
60 | * the data uncompressed otherwise. |
60 | * the data uncompressed otherwise. |
61 | * |
61 | * |
62 | * lzf_compress might use different algorithms on different systems and |
62 | * lzf_compress might use different algorithms on different systems and |
63 | * even diferent runs, thus might result in different compressed strings |
63 | * even different runs, thus might result in different compressed strings |
64 | * depending on the phase of the moon or similar factors. However, all |
64 | * depending on the phase of the moon or similar factors. However, all |
65 | * these strings are architecture-independent and will result in the |
65 | * these strings are architecture-independent and will result in the |
66 | * original data when decompressed using lzf_decompress. |
66 | * original data when decompressed using lzf_decompress. |
67 | * |
67 | * |
68 | * The buffers must not be overlapping. |
68 | * The buffers must not be overlapping. |