Check for ICU for include of icu_I18N.h.
[idzebra-moved-to-github.git] / include / rob_regexp.h
1 /* $Id: rob_regexp.h,v 1.2 2007-10-23 12:36:22 adam Exp $
2    Copyright (C) 1995-2007
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23 /** 
24     \file rob_regexp.h
25     \brief Rob Pike's regular expression matcher
26 */
27
28 #ifndef ZEBRA_ROB_REGEXP_H
29 #define ZEBRA_ROB_REGEXP_H
30
31 #include <yaz/yconfig.h>
32
33 YAZ_BEGIN_CDECL
34
35 /** \brief matches a regular expression against text
36     \param regexp regular expression
37     \param text the text
38     \retval 0 no match
39     \retval 1 match
40
41     Operators: c (literal char), . (any char), ^ (begin), $ (end),
42     * (zero or more)
43 */
44 int zebra_rob_regexp(const char *regexp, const char *text);
45
46 YAZ_END_CDECL
47
48 #endif
49 /*
50  * Local variables:
51  * c-basic-offset: 4
52  * indent-tabs-mode: nil
53  * End:
54  * vim: shiftwidth=4 tabstop=8 expandtab
55  */
56