1/*	$NetBSD$	*/
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
18extern ARGV *match_service_init(const char *);
19extern int match_service_match(ARGV *, const char *);
20extern void match_service_free(ARGV *);
21
22/* LICENSE
23/* .ad
24/* .fi
25/*	The Secure Mailer license must be distributed with this software.
26/* AUTHOR(S)
27/*	Wietse Venema
28/*	IBM T.J. Watson Research
29/*	P.O. Box 704
30/*	Yorktown Heights, NY 10598, USA
31/*--*/
32
33#endif
34