Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / global / string_list.h
blob0faf43643badd9d27cb190188aea06b0a6080a23
1 /* $NetBSD$ */
3 #ifndef _STRING_LIST_H_INCLUDED_
4 #define _STRING_LIST_H_INCLUDED_
6 /*++
7 /* NAME
8 /* string_list 3h
9 /* SUMMARY
10 /* match a string against a pattern list
11 /* SYNOPSIS
12 /* #include <string_list.h>
13 /* DESCRIPTION
14 /* .nf
17 * Utility library.
19 #include <match_list.h>
20 #include <match_ops.h>
23 * External interface.
25 #define STRING_LIST MATCH_LIST
27 #define string_list_init(f, p) match_list_init((f), (p), 1, match_string)
28 #define string_list_match match_list_match
29 #define string_list_free match_list_free
31 /* LICENSE
32 /* .ad
33 /* .fi
34 /* The Secure Mailer license must be distributed with this software.
35 /* AUTHOR(S)
36 /* Wietse Venema
37 /* IBM T.J. Watson Research
38 /* P.O. Box 704
39 /* Yorktown Heights, NY 10598, USA
40 /*--*/
42 #endif