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