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