xref: /netbsd-src/external/ibm-public/postfix/dist/src/util/dict_inline.h (revision e89934bbf778a6d6d6894877c4da59d0c7835b0f)
1*e89934bbSchristos /*	$NetBSD: dict_inline.h,v 1.2 2017/02/14 01:16:49 christos Exp $	*/
2e262b48eSchristos 
3e262b48eSchristos #ifndef _DICT_INLINE_H_INCLUDED_
4e262b48eSchristos #define _DICT_INLINE_H_INCLUDED_
5e262b48eSchristos 
6e262b48eSchristos /*++
7e262b48eSchristos /* NAME
8e262b48eSchristos /*	dict_inline 3h
9e262b48eSchristos /* SUMMARY
10e262b48eSchristos /*	dictionary manager interface for inline tables
11e262b48eSchristos /* SYNOPSIS
12e262b48eSchristos /*	#include <dict_inline.h>
13e262b48eSchristos /* DESCRIPTION
14e262b48eSchristos /* .nf
15e262b48eSchristos 
16e262b48eSchristos  /*
17e262b48eSchristos   * Utility library.
18e262b48eSchristos   */
19e262b48eSchristos #include <dict.h>
20e262b48eSchristos 
21e262b48eSchristos  /*
22e262b48eSchristos   * External interface.
23e262b48eSchristos   */
24e262b48eSchristos #define DICT_TYPE_INLINE	"inline"
25e262b48eSchristos 
26e262b48eSchristos extern DICT *dict_inline_open(const char *, int, int);
27e262b48eSchristos 
28e262b48eSchristos /* LICENSE
29e262b48eSchristos /* .ad
30e262b48eSchristos /* .fi
31e262b48eSchristos /*	The Secure Mailer license must be distributed with this software.
32e262b48eSchristos /* AUTHOR(S)
33e262b48eSchristos /*	Wietse Venema
34e262b48eSchristos /*	IBM T.J. Watson Research
35e262b48eSchristos /*	P.O. Box 704
36e262b48eSchristos /*	Yorktown Heights, NY 10598, USA
37e262b48eSchristos /*--*/
38e262b48eSchristos 
39e262b48eSchristos #endif
40