1 /*	$NetBSD: dict_ht.h,v 1.1.1.2 2010/06/17 18:07:12 tron Exp $	*/
2 
3 #ifndef _DICT_HT_H_INCLUDED_
4 #define _DICT_HT_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	dict_ht 3h
9 /* SUMMARY
10 /*	dictionary manager interface to hash tables
11 /* SYNOPSIS
12 /*	#include <dict_ht.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * Utility library.
18   */
19 #include <htable.h>
20 #include <dict.h>
21 
22  /*
23   * External interface.
24   */
25 #define DICT_TYPE_HT	"internal"
26 
27 extern DICT *dict_ht_open(const char *, int, int);
28 
29 /* LICENSE
30 /* .ad
31 /* .fi
32 /*	The Secure Mailer license must be distributed with this software.
33 /* AUTHOR(S)
34 /*	Wietse Venema
35 /*	IBM T.J. Watson Research
36 /*	P.O. Box 704
37 /*	Yorktown Heights, NY 10598, USA
38 /*--*/
39 
40 #endif
41