diff options
Diffstat (limited to 'ext/SDBM_File/SDBM_File.pm')
-rw-r--r-- | ext/SDBM_File/SDBM_File.pm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/SDBM_File/SDBM_File.pm b/ext/SDBM_File/SDBM_File.pm index deb72f1966..9b7acc1e09 100644 --- a/ext/SDBM_File/SDBM_File.pm +++ b/ext/SDBM_File/SDBM_File.pm @@ -15,3 +15,21 @@ 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 |