diff options
Diffstat (limited to 'contrib/perl5/ext/SDBM_File/SDBM_File.pm')
-rw-r--r-- | contrib/perl5/ext/SDBM_File/SDBM_File.pm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/contrib/perl5/ext/SDBM_File/SDBM_File.pm b/contrib/perl5/ext/SDBM_File/SDBM_File.pm new file mode 100644 index 0000000..a2d4df8 --- /dev/null +++ b/contrib/perl5/ext/SDBM_File/SDBM_File.pm @@ -0,0 +1,35 @@ +package SDBM_File; + +use strict; +use vars qw($VERSION @ISA); + +require Tie::Hash; +require DynaLoader; + +@ISA = qw(Tie::Hash DynaLoader); + +$VERSION = "1.00" ; + +bootstrap SDBM_File $VERSION; + +1; + +__END__ + +=head1 NAME + +SDBM_File - Tied access to sdbm files + +=head1 SYNOPSIS + + use SDBM_File; + + tie(%h, 'SDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640); + + untie %h; + +=head1 DESCRIPTION + +See L<perlfunc/tie> + +=cut |