1 /*        $NetBSD: dict_dbm.h,v 1.2 2023/12/23 20:30:46 christos Exp $          */
2 
3 #ifndef _DICT_DBM_H_INCLUDED_
4 #define _DICT_DBM_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*        dict_dbm 3h
9 /* SUMMARY
10 /*        dictionary manager interface to DBM files
11 /* SYNOPSIS
12 /*        #include <dict_dbm.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * Utility library.
18   */
19 #include <dict.h>
20 #include <mkmap.h>
21 
22  /*
23   * External interface.
24   */
25 #define DICT_TYPE_DBM         "dbm"
26 
27 extern DICT *dict_dbm_open(const char *, int, int);
28 extern MKMAP *mkmap_dbm_open(const char *);
29 
30 /* LICENSE
31 /* .ad
32 /* .fi
33 /*        The Secure Mailer license must be distributed with this software.
34 /* AUTHOR(S)
35 /*        Wietse Venema
36 /*        IBM T.J. Watson Research
37 /*        P.O. Box 704
38 /*        Yorktown Heights, NY 10598, USA
39 /*
40 /*        Wietse Venema
41 /*        Google, Inc.
42 /*        111 8th Avenue
43 /*        New York, NY 10011, USA
44 /*--*/
45 
46 #endif
47