1 /*	$NetBSD: match_service.h,v 1.1.1.2 2013/01/02 18:58:59 tron Exp $	*/
2 
3 #ifndef _MATCH_SERVICE_H_INCLUDED_
4 #define _MATCH_SERVICE_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	match_service 3h
9 /* SUMMARY
10 /*	simple master.cf service name.type pattern matcher
11 /* SYNOPSIS
12 /*	#include <match_service.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /* External interface. */
17 
18 extern ARGV *match_service_init(const char *);
19 extern ARGV *match_service_init_argv(char **);
20 extern int match_service_match(ARGV *, const char *);
21 extern void match_service_free(ARGV *);
22 
23 /* LICENSE
24 /* .ad
25 /* .fi
26 /*	The Secure Mailer license must be distributed with this software.
27 /* AUTHOR(S)
28 /*	Wietse Venema
29 /*	IBM T.J. Watson Research
30 /*	P.O. Box 704
31 /*	Yorktown Heights, NY 10598, USA
32 /*--*/
33 
34 #endif
35