Add Daniel Grisinger <dgris@dimensional.com>.
[p5sagit/p5-mst-13.2.git] / ext / SDBM_File / SDBM_File.pm
CommitLineData
a0d0e21e 1package SDBM_File;
2
ed3c51d2 3use strict;
4use vars qw($VERSION @ISA);
5
6require Tie::Hash;
a0d0e21e 7require DynaLoader;
a0d0e21e 8
ed3c51d2 9@ISA = qw(Tie::Hash DynaLoader);
10
11$VERSION = "1.00" ;
c07a80fd 12
ed3c51d2 13bootstrap SDBM_File $VERSION;
a0d0e21e 14
151;
16
17__END__
a5f75d66 18
19=head1 NAME
20
21SDBM_File - Tied access to sdbm files
22
23=head1 SYNOPSIS
24
25 use SDBM_File;
26
c954a603 27 tie(%h, 'SDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);
a5f75d66 28
29 untie %h;
30
31=head1 DESCRIPTION
32
33See L<perlfunc/tie>
34
35=cut