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