Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
401 B

package SDBM_File;
use strict;
use vars qw($VERSION @ISA);
require Tie::Hash;
require DynaLoader;
@ISA = qw(Tie::Hash DynaLoader);
$VERSION = "1.00" ;
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