diff options
Diffstat (limited to 'ext/NDBM_File/NDBM_File.pm')
-rw-r--r-- | ext/NDBM_File/NDBM_File.pm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/NDBM_File/NDBM_File.pm b/ext/NDBM_File/NDBM_File.pm index 339439c98f..601a3c2a0e 100644 --- a/ext/NDBM_File/NDBM_File.pm +++ b/ext/NDBM_File/NDBM_File.pm @@ -15,3 +15,21 @@ bootstrap NDBM_File $VERSION; 1; __END__ + +=head1 NAME + +NDBM_File - Tied access to ndbm files + +=head1 SYNOPSIS + + use NDBM_File; + + tie(%h,NDBM_File,'Op.dbmx', O_RDWR|O_CREAT, 0640); + + untie %h; + +=head1 DESCRIPTION + +See L<perlfunc/tie> + +=cut |