Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / global / maps.h
blob0d91ebb6162a05b1943f3d760412c04b95a27db3
1 /* $NetBSD$ */
3 #ifndef _MAPS_H_INCLUDED_
4 #define _MAPS_H_INCLUDED_
6 /*++
7 /* NAME
8 /* maps 3h
9 /* SUMMARY
10 /* multi-dictionary search
11 /* SYNOPSIS
12 /* #include <maps.h>
13 /* DESCRIPTION
14 /* .nf
17 * Utility library.
19 #include <dict.h>
22 * Dictionary name storage. We're borrowing from the argv(3) module.
24 typedef struct MAPS {
25 char *title;
26 struct ARGV *argv;
27 } MAPS;
29 extern MAPS *maps_create(const char *, const char *, int);
30 extern const char *maps_find(MAPS *, const char *, int);
31 extern MAPS *maps_free(MAPS *);
33 /* LICENSE
34 /* .ad
35 /* .fi
36 /* The Secure Mailer license must be distributed with this software.
37 /* AUTHOR(S)
38 /* Wietse Venema
39 /* IBM T.J. Watson Research
40 /* P.O. Box 704
41 /* Yorktown Heights, NY 10598, USA
42 /*--*/
44 #endif