No empty .Rs/.Re
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / util / match_ops.h
blob8a1d11a05359e49863fa179465798e9d9d826dc5
1 /* $NetBSD$ */
3 #ifndef _MATCH_OPS_H_INCLUDED_
4 #define _MATCH_OPS_H_INCLUDED_
6 /*++
7 /* NAME
8 /* match_ops 3h
9 /* SUMMARY
10 /* simple string or host pattern matching
11 /* SYNOPSIS
12 /* #include <match_ops.h>
13 /* DESCRIPTION
14 /* .nf
16 /* External interface. */
18 #define MATCH_FLAG_NONE 0
19 #define MATCH_FLAG_PARENT (1<<0)
20 #define MATCH_FLAG_ALL (MATCH_FLAG_PARENT)
22 extern int match_string(int, const char *, const char *);
23 extern int match_hostname(int, const char *, const char *);
24 extern int match_hostaddr(int, const char *, const char *);
26 /* LICENSE
27 /* .ad
28 /* .fi
29 /* The Secure Mailer license must be distributed with this software.
30 /* AUTHOR(S)
31 /* Wietse Venema
32 /* IBM T.J. Watson Research
33 /* P.O. Box 704
34 /* Yorktown Heights, NY 10598, USA
35 /*--*/
37 #endif