2 |
* Perl-Compatible Regular Expressions * |
* Perl-Compatible Regular Expressions * |
3 |
*************************************************/ |
*************************************************/ |
4 |
|
|
|
/* Copyright (c) 1998 University of Cambridge */ |
|
|
|
|
5 |
#ifndef _PCREPOSIX_H |
#ifndef _PCREPOSIX_H |
6 |
#define _PCREPOSIX_H |
#define _PCREPOSIX_H |
7 |
|
|
8 |
/* This is the header for the POSIX wrapper interface to the PCRE Perl- |
/* This is the header for the POSIX wrapper interface to the PCRE Perl- |
9 |
Compatible Regular Expression library. It defines the things POSIX says should |
Compatible Regular Expression library. It defines the things POSIX says should |
10 |
be there. I hope. */ |
be there. I hope. |
11 |
|
|
12 |
|
Copyright (c) 1997-2008 University of Cambridge |
13 |
|
|
14 |
|
----------------------------------------------------------------------------- |
15 |
|
Redistribution and use in source and binary forms, with or without |
16 |
|
modification, are permitted provided that the following conditions are met: |
17 |
|
|
18 |
|
* Redistributions of source code must retain the above copyright notice, |
19 |
|
this list of conditions and the following disclaimer. |
20 |
|
|
21 |
|
* Redistributions in binary form must reproduce the above copyright |
22 |
|
notice, this list of conditions and the following disclaimer in the |
23 |
|
documentation and/or other materials provided with the distribution. |
24 |
|
|
25 |
|
* Neither the name of the University of Cambridge nor the names of its |
26 |
|
contributors may be used to endorse or promote products derived from |
27 |
|
this software without specific prior written permission. |
28 |
|
|
29 |
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
30 |
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
31 |
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
32 |
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
33 |
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
34 |
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
35 |
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
36 |
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
37 |
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
38 |
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
39 |
|
POSSIBILITY OF SUCH DAMAGE. |
40 |
|
----------------------------------------------------------------------------- |
41 |
|
*/ |
42 |
|
|
43 |
/* Have to include stdlib.h in order to ensure that size_t is defined. */ |
/* Have to include stdlib.h in order to ensure that size_t is defined. */ |
44 |
|
|
50 |
extern "C" { |
extern "C" { |
51 |
#endif |
#endif |
52 |
|
|
53 |
/* Options defined by POSIX. */ |
/* Options, mostly defined by POSIX, but with a couple of extras. */ |
54 |
|
|
55 |
|
#define REG_ICASE 0x0001 |
56 |
|
#define REG_NEWLINE 0x0002 |
57 |
|
#define REG_NOTBOL 0x0004 |
58 |
|
#define REG_NOTEOL 0x0008 |
59 |
|
#define REG_DOTALL 0x0010 /* NOT defined by POSIX. */ |
60 |
|
#define REG_NOSUB 0x0020 |
61 |
|
#define REG_UTF8 0x0040 /* NOT defined by POSIX. */ |
62 |
|
#define REG_STARTEND 0x0080 /* BSD feature: pass subject string by so,eo */ |
63 |
|
|
64 |
|
/* This is not used by PCRE, but by defining it we make it easier |
65 |
|
to slot PCRE into existing programs that make POSIX calls. */ |
66 |
|
|
67 |
#define REG_ICASE 0x01 |
#define REG_EXTENDED 0 |
|
#define REG_NEWLINE 0x02 |
|
|
#define REG_NOTBOL 0x04 |
|
|
#define REG_NOTEOL 0x08 |
|
68 |
|
|
69 |
/* Error values. Not all these are relevant or used by the wrapper. */ |
/* Error values. Not all these are relevant or used by the wrapper. */ |
70 |
|
|
106 |
regoff_t rm_eo; |
regoff_t rm_eo; |
107 |
} regmatch_t; |
} regmatch_t; |
108 |
|
|
109 |
|
/* When an application links to a PCRE DLL in Windows, the symbols that are |
110 |
|
imported have to be identified as such. When building PCRE, the appropriate |
111 |
|
export settings are needed, and are set in pcreposix.c before including this |
112 |
|
file. */ |
113 |
|
|
114 |
|
#if defined(_WIN32) && !defined(PCRE_STATIC) && !defined(PCREPOSIX_EXP_DECL) |
115 |
|
# define PCREPOSIX_EXP_DECL extern __declspec(dllimport) |
116 |
|
# define PCREPOSIX_EXP_DEFN __declspec(dllimport) |
117 |
|
#endif |
118 |
|
|
119 |
|
/* By default, we use the standard "extern" declarations. */ |
120 |
|
|
121 |
|
#ifndef PCREPOSIX_EXP_DECL |
122 |
|
# ifdef __cplusplus |
123 |
|
# define PCREPOSIX_EXP_DECL extern "C" |
124 |
|
# define PCREPOSIX_EXP_DEFN extern "C" |
125 |
|
# else |
126 |
|
# define PCREPOSIX_EXP_DECL extern |
127 |
|
# define PCREPOSIX_EXP_DEFN extern |
128 |
|
# endif |
129 |
|
#endif |
130 |
|
|
131 |
/* The functions */ |
/* The functions */ |
132 |
|
|
133 |
extern int regcomp(regex_t *, const char *, int); |
PCREPOSIX_EXP_DECL int regcomp(regex_t *, const char *, int); |
134 |
extern int regexec(regex_t *, const char *, size_t, regmatch_t *, int); |
PCREPOSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t, |
135 |
extern size_t regerror(int, const regex_t *, char *, size_t); |
regmatch_t *, int); |
136 |
extern void regfree(regex_t *); |
PCREPOSIX_EXP_DECL size_t regerror(int, const regex_t *, char *, size_t); |
137 |
|
PCREPOSIX_EXP_DECL void regfree(regex_t *); |
138 |
|
|
139 |
#ifdef __cplusplus |
#ifdef __cplusplus |
140 |
} /* extern "C" */ |
} /* extern "C" */ |