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

Comparing Compress-LZF/LZF.pm (file contents):
Revision 1.22 by root, Fri Feb 16 22:11:17 2007 UTC vs.
Revision 1.31 by root, Wed Dec 17 00:36:09 2008 UTC

23LZF is an extremely fast (not that much slower than a pure memcpy) 23LZF is an extremely fast (not that much slower than a pure memcpy)
24compression algorithm. It is ideal for applications where you want to save 24compression algorithm. It is ideal for applications where you want to save
25I<some> space but not at the cost of speed. It is ideal for repetitive 25I<some> space but not at the cost of speed. It is ideal for repetitive
26data as well. The module is self-contained and very small (no large 26data as well. The module is self-contained and very small (no large
27library to be pulled in). It is also free, so there should be no problems 27library to be pulled in). It is also free, so there should be no problems
28incoporating this module into commercial programs. 28incorporating this module into commercial programs.
29 29
30I have no idea wether any patents in any countries apply to this 30I have no idea wether any patents in any countries apply to this
31algorithm, but at the moment it is believed that it is free from any 31algorithm, but at the moment it is believed that it is free from any
32patents. 32patents.
33 33
109package Compress::LZF; 109package Compress::LZF;
110 110
111require Exporter; 111require Exporter;
112require DynaLoader; 112require DynaLoader;
113 113
114$VERSION = '1.71'; 114$VERSION = '3.42';
115@ISA = qw/Exporter DynaLoader/; 115@ISA = qw/Exporter DynaLoader/;
116%EXPORT_TAGS = ( 116%EXPORT_TAGS = (
117 freeze => [qw(sfreeze sfreeze_cr sfreeze_c sthaw)], 117 freeze => [qw(sfreeze sfreeze_cr sfreeze_c sthaw)],
118 compress => [qw(compress decompress)], 118 compress => [qw(compress decompress)],
119); 119);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines