annotate src/regex.h @ 158:558dfa75ffb3

Added tag r20-3b5 for changeset 6b37e6ddd302
author cvs
date Mon, 13 Aug 2007 09:40:48 +0200
parents cf808b4c4290
children 3d6bfa290dbd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Definitions for data structures and routines for the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 expression library, version 0.12.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1985, 89, 90, 91, 92, 93, 95 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This program is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 This program is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with this program; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.29. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #ifndef __REGEXP_LIBRARY_H__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #define __REGEXP_LIBRARY_H__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 /* POSIX says that <sys/types.h> must be included (by the caller) before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 <regex.h>. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #if !defined (_POSIX_C_SOURCE) && !defined (_POSIX_SOURCE) && defined (VMS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 /* VMS doesn't have `size_t' in <sys/types.h>, even though POSIX says it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 should be there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include <stddef.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 /* The following bits are used to determine the regexp syntax we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 recognize. The set/not-set meanings are chosen so that Emacs syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 remains the value 0. The bits are given in alphabetical order, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 the definitions shifted by one from the previous bit; thus, when we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 add or remove a bit, only one other definition need change. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 typedef unsigned reg_syntax_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 /* If this bit is not set, then \ inside a bracket expression is literal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 If set, then such a \ quotes the following character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #define RE_BACKSLASH_ESCAPE_IN_LISTS (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 /* If this bit is not set, then + and ? are operators, and \+ and \? are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 literals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 If set, then \+ and \? are operators and + and ? are literals. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #define RE_BK_PLUS_QM (RE_BACKSLASH_ESCAPE_IN_LISTS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 /* If this bit is set, then character classes are supported. They are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 [:alpha:], [:upper:], [:lower:], [:digit:], [:alnum:], [:xdigit:],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 [:space:], [:print:], [:punct:], [:graph:], and [:cntrl:].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 If not set, then character classes are not supported. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #define RE_CHAR_CLASSES (RE_BK_PLUS_QM << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 /* If this bit is set, then ^ and $ are always anchors (outside bracket
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 expressions, of course).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 If this bit is not set, then it depends:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ^ is an anchor if it is at the beginning of a regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 expression or after an open-group or an alternation operator;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 $ is an anchor if it is at the end of a regular expression, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 before a close-group or an alternation operator.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 This bit could be (re)combined with RE_CONTEXT_INDEP_OPS, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 POSIX draft 11.2 says that * etc. in leading positions is undefined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 We already implemented a previous draft which made those constructs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 invalid, though, so we haven't changed the code back. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #define RE_CONTEXT_INDEP_ANCHORS (RE_CHAR_CLASSES << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 /* If this bit is set, then special characters are always special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 regardless of where they are in the pattern.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 If this bit is not set, then special characters are special only in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 some contexts; otherwise they are ordinary. Specifically,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 * + ? and intervals are only special when not after the beginning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 open-group, or alternation operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #define RE_CONTEXT_INDEP_OPS (RE_CONTEXT_INDEP_ANCHORS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 /* If this bit is set, then *, +, ?, and { cannot be first in an re or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 immediately after an alternation or begin-group operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #define RE_CONTEXT_INVALID_OPS (RE_CONTEXT_INDEP_OPS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 /* If this bit is set, then . matches newline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 If not set, then it doesn't. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #define RE_DOT_NEWLINE (RE_CONTEXT_INVALID_OPS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 /* If this bit is set, then . doesn't match NUL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 If not set, then it does. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #define RE_DOT_NOT_NULL (RE_DOT_NEWLINE << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 /* If this bit is set, nonmatching lists [^...] do not match newline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 If not set, they do. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 #define RE_HAT_LISTS_NOT_NEWLINE (RE_DOT_NOT_NULL << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* If this bit is set, either \{...\} or {...} defines an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 interval, depending on RE_NO_BK_BRACES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 If not set, \{, \}, {, and } are literals. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #define RE_INTERVALS (RE_HAT_LISTS_NOT_NEWLINE << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 /* If this bit is set, +, ? and | aren't recognized as operators.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 If not set, they are. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 #define RE_LIMITED_OPS (RE_INTERVALS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 /* If this bit is set, newline is an alternation operator.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 If not set, newline is literal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #define RE_NEWLINE_ALT (RE_LIMITED_OPS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 /* If this bit is set, then `{...}' defines an interval, and \{ and \}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 are literals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 If not set, then `\{...\}' defines an interval. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #define RE_NO_BK_BRACES (RE_NEWLINE_ALT << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 /* If this bit is set, (...) defines a group, and \( and \) are literals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 If not set, \(...\) defines a group, and ( and ) are literals. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #define RE_NO_BK_PARENS (RE_NO_BK_BRACES << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 /* If this bit is set, then \<digit> matches <digit>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 If not set, then \<digit> is a back-reference. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 #define RE_NO_BK_REFS (RE_NO_BK_PARENS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 /* If this bit is set, then | is an alternation operator, and \| is literal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 If not set, then \| is an alternation operator, and | is literal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 #define RE_NO_BK_VBAR (RE_NO_BK_REFS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 /* If this bit is set, then an ending range point collating higher
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 than the starting range point, as in [z-a], is invalid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 If not set, then when ending range point collates higher than the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 starting range point, the range is ignored. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 #define RE_NO_EMPTY_RANGES (RE_NO_BK_VBAR << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 /* If this bit is set, then an unmatched ) is ordinary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 If not set, then an unmatched ) is invalid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 #define RE_UNMATCHED_RIGHT_PAREN_ORD (RE_NO_EMPTY_RANGES << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 /* If this bit is set, succeed as soon as we match the whole pattern,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 without further backtracking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 #define RE_NO_POSIX_BACKTRACKING (RE_UNMATCHED_RIGHT_PAREN_ORD << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 /* This global variable defines the particular regexp syntax to use (for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 some interfaces). When a regexp is compiled, the syntax used is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 stored in the pattern buffer, so changing this does not affect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 already-compiled regexps. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 extern reg_syntax_t re_syntax_options;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 /* Define combinations of the above bits for the standard possibilities.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (The [[[ comments delimit what gets put into the Texinfo file, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 don't delete them!) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 /* [[[begin syntaxes]]] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 #define RE_SYNTAX_EMACS 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 #define RE_SYNTAX_AWK \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (RE_BACKSLASH_ESCAPE_IN_LISTS | RE_DOT_NOT_NULL \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 | RE_NO_BK_PARENS | RE_NO_BK_REFS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 | RE_NO_BK_VBAR | RE_NO_EMPTY_RANGES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 | RE_UNMATCHED_RIGHT_PAREN_ORD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 #define RE_SYNTAX_POSIX_AWK \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #define RE_SYNTAX_GREP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (RE_BK_PLUS_QM | RE_CHAR_CLASSES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 | RE_HAT_LISTS_NOT_NEWLINE | RE_INTERVALS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 | RE_NEWLINE_ALT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 #define RE_SYNTAX_EGREP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (RE_CHAR_CLASSES | RE_CONTEXT_INDEP_ANCHORS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 | RE_CONTEXT_INDEP_OPS | RE_HAT_LISTS_NOT_NEWLINE \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 | RE_NEWLINE_ALT | RE_NO_BK_PARENS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 | RE_NO_BK_VBAR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #define RE_SYNTAX_POSIX_EGREP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 /* P1003.2/D11.2, section 4.20.7.1, lines 5078ff. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 #define RE_SYNTAX_ED RE_SYNTAX_POSIX_BASIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #define RE_SYNTAX_SED RE_SYNTAX_POSIX_BASIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 /* Syntax bits common to both basic and extended POSIX regex syntax. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 #define _RE_SYNTAX_POSIX_COMMON \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (RE_CHAR_CLASSES | RE_DOT_NEWLINE | RE_DOT_NOT_NULL \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 | RE_INTERVALS | RE_NO_EMPTY_RANGES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 #define RE_SYNTAX_POSIX_BASIC \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (_RE_SYNTAX_POSIX_COMMON | RE_BK_PLUS_QM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 /* Differs from ..._POSIX_BASIC only in that RE_BK_PLUS_QM becomes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 RE_LIMITED_OPS, i.e., \? \+ \| are not recognized. Actually, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 isn't minimal, since other operators, such as \`, aren't disabled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 #define RE_SYNTAX_POSIX_MINIMAL_BASIC \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (_RE_SYNTAX_POSIX_COMMON | RE_LIMITED_OPS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 #define RE_SYNTAX_POSIX_EXTENDED \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (_RE_SYNTAX_POSIX_COMMON | RE_CONTEXT_INDEP_ANCHORS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 | RE_CONTEXT_INDEP_OPS | RE_NO_BK_BRACES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 | RE_NO_BK_PARENS | RE_NO_BK_VBAR \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 | RE_UNMATCHED_RIGHT_PAREN_ORD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 /* Differs from ..._POSIX_EXTENDED in that RE_CONTEXT_INVALID_OPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 replaces RE_CONTEXT_INDEP_OPS and RE_NO_BK_REFS is added. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 #define RE_SYNTAX_POSIX_MINIMAL_EXTENDED \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (_RE_SYNTAX_POSIX_COMMON | RE_CONTEXT_INDEP_ANCHORS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 | RE_CONTEXT_INVALID_OPS | RE_NO_BK_BRACES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 | RE_NO_BK_PARENS | RE_NO_BK_REFS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 | RE_NO_BK_VBAR | RE_UNMATCHED_RIGHT_PAREN_ORD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 /* [[[end syntaxes]]] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 /* Maximum number of duplicates an interval can allow. Some systems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (erroneously) define this in other header files, but we want our
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 value, so remove any previous define. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #ifdef RE_DUP_MAX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 #undef RE_DUP_MAX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 #define RE_DUP_MAX ((1 << 15) - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 /* POSIX `cflags' bits (i.e., information for `regcomp'). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 /* If this bit is set, then use extended regular expression syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 If not set, then use basic regular expression syntax. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #define REG_EXTENDED 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 /* If this bit is set, then ignore case when matching.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 If not set, then case is significant. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 #define REG_ICASE (REG_EXTENDED << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 /* If this bit is set, then anchors do not match at newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 characters in the string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 If not set, then anchors do match at newlines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 #define REG_NEWLINE (REG_ICASE << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 /* If this bit is set, then report only success or fail in regexec.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 If not set, then returns differ between not matching and errors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 #define REG_NOSUB (REG_NEWLINE << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 /* POSIX `eflags' bits (i.e., information for regexec). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 /* If this bit is set, then the beginning-of-line operator doesn't match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 the beginning of the string (presumably because it's not the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 beginning of a line).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 If not set, then the beginning-of-line operator does match the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 beginning of the string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #define REG_NOTBOL 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 /* Like REG_NOTBOL, except for the end-of-line. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 #define REG_NOTEOL (1 << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 /* If any error codes are removed, changed, or added, update the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 `re_error_msg' table in regex.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 typedef enum
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 REG_NOERROR = 0, /* Success. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 REG_NOMATCH, /* Didn't find a match (for regexec). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 /* POSIX regcomp return error codes. (In the order listed in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 standard.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 REG_BADPAT, /* Invalid pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 REG_ECOLLATE, /* Not implemented. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 REG_ECTYPE, /* Invalid character class name. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 REG_EESCAPE, /* Trailing backslash. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 REG_ESUBREG, /* Invalid back reference. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 REG_EBRACK, /* Unmatched left bracket. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 REG_EPAREN, /* Parenthesis imbalance. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 REG_EBRACE, /* Unmatched \{. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 REG_BADBR, /* Invalid contents of \{\}. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 REG_ERANGE, /* Invalid range end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 REG_ESPACE, /* Ran out of memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 REG_BADRPT, /* No preceding re for repetition op. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 /* Error codes we've added. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 REG_EEND, /* Premature end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 ,REG_ESYNTAX /* Invalid syntax designator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 #endif
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 0
diff changeset
280 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 0
diff changeset
281 ,REG_ERANGESPAN /* Ranges may not span charsets. */
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 70
diff changeset
282 ,REG_ECATEGORY /* Invalid category designator */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 0
diff changeset
283 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 } reg_errcode_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 /* This data structure represents a compiled pattern. Before calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 the pattern compiler, the fields `buffer', `allocated', `fastmap',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 `translate', and `no_sub' can be set. After the pattern has been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 compiled, the `re_nsub' field is available. All other fields are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 private to the regex routines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 struct re_pattern_buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 /* [[[begin pattern_buffer]]] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 /* Space that holds the compiled pattern. It is declared as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 `unsigned char *' because its elements are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 sometimes used as array indexes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 unsigned char *buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 /* Number of bytes to which `buffer' points. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 unsigned long allocated;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 /* Number of bytes actually used in `buffer'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 unsigned long used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 /* Syntax setting with which the pattern was compiled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 reg_syntax_t syntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 /* Pointer to a fastmap, if any, otherwise zero. re_search uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 the fastmap, if there is one, to skip over impossible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 starting points for matches. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 char *fastmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 /* Either a translate table to apply to all characters before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 comparing them, or zero for no translation. The translation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 is applied to a pattern when it is compiled and to a string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 when it is matched. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 char *translate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 /* Number of subexpressions found by the compiler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 size_t re_nsub;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 /* Zero if this pattern cannot match the empty string, one else.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 Well, in truth it's used only in `re_search_2', to see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 whether or not we should use the fastmap, so we don't set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 this absolutely perfectly; see `re_compile_fastmap' (the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 `duplicate' case). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 unsigned can_be_null : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 /* If REGS_UNALLOCATED, allocate space in the `regs' structure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 for `max (RE_NREGS, re_nsub + 1)' groups.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 If REGS_REALLOCATE, reallocate space if necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 If REGS_FIXED, use what's there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 #define REGS_UNALLOCATED 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 #define REGS_REALLOCATE 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 #define REGS_FIXED 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 unsigned regs_allocated : 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 /* Set to zero when `regex_compile' compiles a pattern; set to one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 by `re_compile_fastmap' if it updates the fastmap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 unsigned fastmap_accurate : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 /* If set, `re_match_2' does not return information about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 subexpressions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 unsigned no_sub : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 /* If set, a beginning-of-line anchor doesn't match at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 beginning of the string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 unsigned not_bol : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 /* Similarly for an end-of-line anchor. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 unsigned not_eol : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 /* If true, an anchor at a newline matches. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 unsigned newline_anchor : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 /* [[[end pattern_buffer]]] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 typedef struct re_pattern_buffer regex_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 /* Type for byte offsets within the string. POSIX mandates this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 typedef int regoff_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 /* This is the structure we store register match data in. See
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 regex.texinfo for a full description of what registers match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 struct re_registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 unsigned num_regs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 regoff_t *start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 regoff_t *end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 /* If `regs_allocated' is REGS_UNALLOCATED in the pattern buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 `re_match_2' returns information about at least this many registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 the first time a `regs' structure is passed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 #ifndef RE_NREGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 #define RE_NREGS 30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 /* POSIX specification for registers. Aside from the different names than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 `re_registers', POSIX uses an array of structures, instead of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 structure of arrays. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 typedef struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 } regmatch_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 /* Declarations for routines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 /* To avoid duplicating every routine declaration -- once with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 prototype (if we are ANSI), and once without (if we aren't) -- we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 use the following macro to declare argument types. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 unfortunately clutters up the declarations a bit, but I think it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 worth it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 #ifdef __STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 #define _RE_ARGS(args) args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 #else /* not __STDC__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 #define _RE_ARGS(args) ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 #endif /* not __STDC__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 /* Sets the current default syntax to SYNTAX, and return the old syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 You can also simply assign to the `re_syntax_options' variable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 extern reg_syntax_t re_set_syntax _RE_ARGS ((reg_syntax_t syntax));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 /* Compile the regular expression PATTERN, with length LENGTH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 and syntax given by the global `re_syntax_options', into the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 BUFFER. Return NULL if successful, and an error string if not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 extern CONST char *re_compile_pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 _RE_ARGS ((CONST char *pattern, int length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 struct re_pattern_buffer *buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 /* Compile a fastmap for the compiled pattern in BUFFER; used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 accelerate searches. Return 0 if successful and -2 if was an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 internal error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 extern int re_compile_fastmap _RE_ARGS ((struct re_pattern_buffer *buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 /* Search in the string STRING (with length LENGTH) for the pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 compiled into BUFFER. Start searching at position START, for RANGE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 characters. Return the starting position of the match, -1 for no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 match, or -2 for an internal error. Also return register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 information in REGS (if REGS and BUFFER->no_sub are nonzero). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 extern int re_search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 _RE_ARGS ((struct re_pattern_buffer *buffer, CONST char *string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 int length, int start, int range, struct re_registers *regs));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 /* Like `re_search', but search in the concatenation of STRING1 and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 STRING2. Also, stop searching at index START + STOP. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 extern int re_search_2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 _RE_ARGS ((struct re_pattern_buffer *buffer, CONST char *string1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 int length1, CONST char *string2, int length2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 int start, int range, struct re_registers *regs, int stop));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 /* Like `re_search', but return how many characters in STRING the regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 in BUFFER matched, starting at position START. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 extern int re_match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 _RE_ARGS ((struct re_pattern_buffer *buffer, CONST char *string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 int length, int start, struct re_registers *regs));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 /* Relates to `re_match' as `re_search_2' relates to `re_search'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 extern int re_match_2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 _RE_ARGS ((struct re_pattern_buffer *buffer, CONST char *string1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 int length1, CONST char *string2, int length2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 int start, struct re_registers *regs, int stop));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 ENDS. Subsequent matches using BUFFER and REGS will use this memory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 for recording register information. STARTS and ENDS must be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 allocated with malloc, and must each be at least `NUM_REGS * sizeof
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (regoff_t)' bytes long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 If NUM_REGS == 0, then subsequent matches should allocate their own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 register data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 Unless this function is called, the first search or match using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 PATTERN_BUFFER will allocate its own register data, without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 freeing the old data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 extern void re_set_registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 _RE_ARGS ((struct re_pattern_buffer *buffer, struct re_registers *regs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 unsigned num_regs, regoff_t *starts, regoff_t *ends));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 #ifdef _REGEX_RE_COMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 /* 4.2 bsd compatibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 extern char *re_comp _RE_ARGS ((CONST char *));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 extern int re_exec _RE_ARGS ((CONST char *));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 /* POSIX compatibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 extern int regcomp _RE_ARGS ((regex_t *preg, CONST char *pattern, int cflags));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 extern int regexec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 _RE_ARGS ((CONST regex_t *preg, CONST char *string, size_t nmatch,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 regmatch_t pmatch[], int eflags));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 extern size_t regerror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 _RE_ARGS ((int errcode, CONST regex_t *preg, char *errbuf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 size_t errbuf_size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 extern void regfree _RE_ARGS ((regex_t *preg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 #endif /* not __REGEXP_LIBRARY_H__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 Local variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 make-backup-files: t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 version-control: t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 trim-versions-without-asking: nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 End:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 */