xref: /netbsd-src/external/ibm-public/postfix/dist/src/util/dict_regexp.h (revision 41fbaed053f8fbfdf9d2a4ee0a7386a3c83f8505)
1*41fbaed0Stron /*	$NetBSD: dict_regexp.h,v 1.1.1.1 2009/06/23 10:08:59 tron Exp $	*/
2*41fbaed0Stron 
3*41fbaed0Stron #ifndef _DICT_REGEXP_H_INCLUDED_
4*41fbaed0Stron #define _DICT_REGEXP_H_INCLUDED_
5*41fbaed0Stron 
6*41fbaed0Stron /*++
7*41fbaed0Stron /* NAME
8*41fbaed0Stron /*	dict_regexp 3h
9*41fbaed0Stron /* SUMMARY
10*41fbaed0Stron /*	dictionary manager interface to REGEXP regular expression library
11*41fbaed0Stron /* SYNOPSIS
12*41fbaed0Stron /*	#include <dict_regexp.h>
13*41fbaed0Stron /* DESCRIPTION
14*41fbaed0Stron /* .nf
15*41fbaed0Stron 
16*41fbaed0Stron  /*
17*41fbaed0Stron   * Utility library.
18*41fbaed0Stron   */
19*41fbaed0Stron #include <dict.h>
20*41fbaed0Stron 
21*41fbaed0Stron  /*
22*41fbaed0Stron   * External interface.
23*41fbaed0Stron   */
24*41fbaed0Stron #define DICT_TYPE_REGEXP	"regexp"
25*41fbaed0Stron 
26*41fbaed0Stron extern DICT *dict_regexp_open(const char *, int, int);
27*41fbaed0Stron 
28*41fbaed0Stron /* AUTHOR(S)
29*41fbaed0Stron /*	LaMont Jones
30*41fbaed0Stron /*	lamont@hp.com
31*41fbaed0Stron /*
32*41fbaed0Stron /*	Based on PCRE dictionary contributed by	Andrew McNamara
33*41fbaed0Stron /*	andrewm@connect.com.au
34*41fbaed0Stron /*	connect.com.au Pty. Ltd.
35*41fbaed0Stron /*	Level 3, 213 Miller St
36*41fbaed0Stron /*	North Sydney, NSW, Australia
37*41fbaed0Stron /*
38*41fbaed0Stron /*	Wietse Venema
39*41fbaed0Stron /*	IBM T.J. Watson Research
40*41fbaed0Stron /*	P.O. Box 704
41*41fbaed0Stron /*	Yorktown Heights, NY 10598, USA
42*41fbaed0Stron /*--*/
43*41fbaed0Stron 
44*41fbaed0Stron #endif
45