blob: 601a3c2a0e186bbea98ccdf462c64a142263d726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package NDBM_File;
use strict;
use vars qw($VERSION @ISA);
require Tie::Hash;
require DynaLoader;
@ISA = qw(Tie::Hash DynaLoader);
$VERSION = "1.00";
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
|