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

  1. package SDBM_File;
  2. use strict;
  3. use vars qw($VERSION @ISA);
  4. require Tie::Hash;
  5. require DynaLoader;
  6. @ISA = qw(Tie::Hash DynaLoader);
  7. $VERSION = "1.00" ;
  8. bootstrap SDBM_File $VERSION;
  9. 1;
  10. __END__
  11. =head1 NAME
  12. SDBM_File - Tied access to sdbm files
  13. =head1 SYNOPSIS
  14. use SDBM_File;
  15. tie(%h, 'SDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);
  16. untie %h;
  17. =head1 DESCRIPTION
  18. See L<perlfunc/tie>
  19. =cut