source: trunk/third/perl/ext/SDBM_File/SDBM_File.pm @ 10724

Revision 10724, 401 bytes checked in by ghudson, 27 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r10723, which included commits to RCS files with non-trunk default branches.
Line 
1package SDBM_File;
2
3use strict;
4use vars qw($VERSION @ISA);
5
6require Tie::Hash;
7require DynaLoader;
8
9@ISA = qw(Tie::Hash DynaLoader);
10
11$VERSION = "1.00" ;
12
13bootstrap SDBM_File $VERSION;
14
151;
16
17__END__
18
19=head1 NAME
20
21SDBM_File - Tied access to sdbm files
22
23=head1 SYNOPSIS
24
25 use SDBM_File;
26
27 tie(%h, 'SDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);
28
29 untie %h;
30
31=head1 DESCRIPTION
32
33See L<perlfunc/tie>
34
35=cut
Note: See TracBrowser for help on using the repository browser.