xref: /netbsd-src/external/ibm-public/postfix/dist/src/util/dict_fail.h (revision c48c605c14fd8622b523d1d6a3f0c0bad133ea89)
1 /*	$NetBSD: dict_fail.h,v 1.2 2023/12/23 20:30:46 christos Exp $	*/
2 
3 #ifndef _DICT_FAIL_H_INCLUDED_
4 #define _DICT_FAIL_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	dict_fail 3h
9 /* SUMMARY
10 /*	dictionary manager interface to 'always fail' table
11 /* SYNOPSIS
12 /*	#include <dict_fail.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_FAIL	"fail"
26 
27 extern DICT *dict_fail_open(const char *, int, int);
28 extern MKMAP *mkmap_fail_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 /*	jeffm
36 /*	ghostgun.com
37 /*
38 /*	Wietse Venema
39 /*	Google, Inc.
40 /*	111 8th Avenue
41 /*	New York, NY 10011, USA
42 /*--*/
43 
44 #endif
45