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.12 by root, Thu Sep 5 22:02:26 2002 UTC vs.
Revision 1.23 by root, Mon Apr 16 20:05:33 2007 UTC

1=head1 NAME 1=head1 NAME
2 2
3Compress::LZF - extremely leight-weight Lev-Zimpel-Free compression 3Compress::LZF - extremely light-weight Lempel-Ziv-Free compression
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 # import compress/decompress functions 7 # import compress/decompress functions
8 use Compress::LZF; 8 use Compress::LZF;
84function automatically detects all the different sfreeze formats. 84function automatically detects all the different sfreeze formats.
85 85
86=head2 Compress::LZF::set_serializer $package, $freeze, $thaw 86=head2 Compress::LZF::set_serializer $package, $freeze, $thaw
87 87
88Set the serialize module and functions to use. The default is "Storable", 88Set the serialize module and functions to use. The default is "Storable",
89"Storable::mstore" and "Storable::mretrieve", which should be fine for 89"Storable::net_mstore" and "Storable::mretrieve", which should be fine for
90most purposes. 90most purposes.
91 91
92=head1 SEE ALSO 92=head1 SEE ALSO
93 93
94Other Compress::* modules, especially Compress::LZV1 (an older, less 94Other Compress::* modules, especially Compress::LZV1 (an older, less
98http://liblzf.plan9.de/ 98http://liblzf.plan9.de/
99 99
100=head1 AUTHOR 100=head1 AUTHOR
101 101
102This perl extension and the underlying liblzf were written by Marc Lehmann 102This perl extension and the underlying liblzf were written by Marc Lehmann
103<pcg@goof.com> (See also http://liblzf.plan9.de/). 103<schmorp@schmorp.de> (See also http://liblzf.plan9.de/).
104 104
105=head1 BUGS 105=head1 BUGS
106 106
107=cut 107=cut
108 108
109package Compress::LZF; 109package Compress::LZF;
110 110
111require Exporter; 111require Exporter;
112require DynaLoader; 112require DynaLoader;
113 113
114$VERSION = 0.1045; 114$VERSION = '1.8';
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