1 /* -*- buffer-read-only: t -*-
5 * Copyright (C) 2007, 2011 by Larry Wall and others
7 * You may distribute under the terms of either the GNU General Public
8 * License or the Artistic License, as specified in the README file.
10 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
11 * This file is built by regen/regcharclass.pl.
12 * Any changes made here will be lost!
13 * WARNING: These macros are for internal Perl core use only, and may be
14 * changed or removed without notice.
18 #ifndef PERL_REGCHARCLASS_H_ /* Guard against nested #includes */
19 #define PERL_REGCHARCLASS_H_
21 #if 'A' == 65 /* ASCII/Latin1 */
23 LNBREAK: Line Break: \R
25 "\x0D\x0A" # CRLF - Network (Windows) line ending
28 /*** GENERATED CODE ***/
29 #define is_LNBREAK_safe(s,e,is_utf8) \
31 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\n', '\f') ) ? 1 \
32 : ( '\r' == ((const U8*)s)[0] ) ? \
33 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
35 ( ( 0xC2 == ((const U8*)s)[0] ) ? \
36 ( ( 0x85 == ((const U8*)s)[1] ) ? 2 : 0 ) \
37 : ( ( ( 0xE2 == ((const U8*)s)[0] ) && ( 0x80 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xA8, 0xA9) ) ) ? 3 : 0 )\
38 : ( 0x85 == ((const U8*)s)[0] ) ) \
40 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\n', '\f') ) ? 1 \
41 : ( '\r' == ((const U8*)s)[0] ) ? \
42 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
44 ( ( ( 0xC2 == ((const U8*)s)[0] ) && ( 0x85 == ((const U8*)s)[1] ) ) ? 2 : 0 )\
45 : ( 0x85 == ((const U8*)s)[0] ) ) \
47 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\n', '\r') ) ? 1 \
48 : ( !( is_utf8 ) ) ? \
49 ( 0x85 == ((const U8*)s)[0] ) \
53 /*** GENERATED CODE ***/
54 #define is_LNBREAK_utf8_safe(s,e) \
56 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\n', '\f') ) ? 1 \
57 : ( '\r' == ((const U8*)s)[0] ) ? \
58 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
59 : ( 0xC2 == ((const U8*)s)[0] ) ? \
60 ( ( 0x85 == ((const U8*)s)[1] ) ? 2 : 0 ) \
61 : ( ( ( 0xE2 == ((const U8*)s)[0] ) && ( 0x80 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xA8, 0xA9) ) ) ? 3 : 0 )\
63 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\n', '\f') ) ? 1 \
64 : ( '\r' == ((const U8*)s)[0] ) ? \
65 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
66 : ( ( 0xC2 == ((const U8*)s)[0] ) && ( 0x85 == ((const U8*)s)[1] ) ) ? 2 : 0 )\
68 ( inRANGE_helper_(U8, ((const U8*)s)[0], '\n', '\r') ) \
71 /*** GENERATED CODE ***/
72 #define is_LNBREAK_latin1_safe(s,e) \
74 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\n', '\f') || 0x85 == ((const U8*)s)[0] ) ? 1\
75 : ( '\r' == ((const U8*)s)[0] ) ? \
76 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
79 ( inRANGE_helper_(U8, ((const U8*)s)[0], '\n', '\r') || 0x85 == ((const U8*)s)[0] )\
83 HORIZWS: Horizontal Whitespace: \h \H
87 /*** GENERATED CODE ***/
88 #define is_HORIZWS_high(s) \
89 ( ( 0xE1 == ((const U8*)s)[0] ) ? \
90 ( ( ( 0x9A == ((const U8*)s)[1] ) && ( 0x80 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
91 : ( 0xE2 == ((const U8*)s)[0] ) ? \
92 ( ( 0x80 == ((const U8*)s)[1] ) ? \
93 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0x8A) || 0xAF == ((const U8*)s)[2] ) ? 3 : 0 )\
94 : ( ( 0x81 == ((const U8*)s)[1] ) && ( 0x9F == ((const U8*)s)[2] ) ) ? 3 : 0 )\
95 : ( ( ( 0xE3 == ((const U8*)s)[0] ) && ( 0x80 == ((const U8*)s)[1] ) ) && ( 0x80 == ((const U8*)s)[2] ) ) ? 3 : 0 )
97 /*** GENERATED CODE ***/
98 #define is_HORIZWS_cp_high(cp) \
99 ( 0x1680 == cp || ( 0x1680 < cp && \
100 ( inRANGE_helper_(UV, cp, 0x2000, 0x200A) || ( 0x200A < cp && \
101 ( 0x202F == cp || ( 0x202F < cp && \
102 ( 0x205F == cp || 0x3000 == cp ) ) ) ) ) ) )
105 VERTWS: Vertical Whitespace: \v \V
109 /*** GENERATED CODE ***/
110 #define is_VERTWS_high(s) \
111 ( ( ( ( 0xE2 == ((const U8*)s)[0] ) && ( 0x80 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xA8, 0xA9) ) ) ? 3 : 0 )
113 /*** GENERATED CODE ***/
114 #define is_VERTWS_cp_high(cp) \
115 ( inRANGE_helper_(UV, cp, 0x2028, 0x2029) )
118 XDIGIT: Hexadecimal digits
122 /*** GENERATED CODE ***/
123 #define is_XDIGIT_high(s) \
124 ( ( 0xEF == ((const U8*)s)[0] ) ? \
125 ( ( 0xBC == ((const U8*)s)[1] ) ? \
126 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x90, 0x99) || inRANGE_helper_(U8, ((const U8*)s)[2], 0xA1, 0xA6) ) ? 3 : 0 )\
127 : ( ( 0xBD == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x81, 0x86) ) ) ? 3 : 0 )\
130 /*** GENERATED CODE ***/
131 #define is_XDIGIT_cp_high(cp) \
132 ( inRANGE_helper_(UV, cp, 0xFF10, 0xFF19) || ( 0xFF19 < cp && \
133 ( inRANGE_helper_(UV, cp, 0xFF21, 0xFF26) || inRANGE_helper_(UV, cp, 0xFF41, 0xFF46) ) ) )
136 XPERLSPACE: \p{XPerlSpace}
140 /*** GENERATED CODE ***/
141 #define is_XPERLSPACE_high(s) \
142 ( ( 0xE1 == ((const U8*)s)[0] ) ? \
143 ( ( ( 0x9A == ((const U8*)s)[1] ) && ( 0x80 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
144 : ( 0xE2 == ((const U8*)s)[0] ) ? \
145 ( ( 0x80 == ((const U8*)s)[1] ) ? \
146 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0x8A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0xA8, 0xA9) || 0xAF == ((const U8*)s)[2] ) ? 3 : 0 )\
147 : ( ( 0x81 == ((const U8*)s)[1] ) && ( 0x9F == ((const U8*)s)[2] ) ) ? 3 : 0 )\
148 : ( ( ( 0xE3 == ((const U8*)s)[0] ) && ( 0x80 == ((const U8*)s)[1] ) ) && ( 0x80 == ((const U8*)s)[2] ) ) ? 3 : 0 )
150 /*** GENERATED CODE ***/
151 #define is_XPERLSPACE_cp_high(cp) \
152 ( 0x1680 == cp || ( 0x1680 < cp && \
153 ( inRANGE_helper_(UV, cp, 0x2000, 0x200A) || ( 0x200A < cp && \
154 ( inRANGE_helper_(UV, cp, 0x2028, 0x2029) || ( 0x2029 < cp && \
155 ( 0x202F == cp || ( 0x202F < cp && \
156 ( 0x205F == cp || 0x3000 == cp ) ) ) ) ) ) ) ) )
159 NONCHAR: Non character code points
163 /*** GENERATED CODE ***/
164 #define is_NONCHAR_utf8_safe(s,e) \
165 ( ( ( LIKELY((e) > (s)) ) && ( LIKELY(((e) - (s)) >= UTF8SKIP(s)) ) ) ? ( ( 0xEF == ((const U8*)s)[0] ) ?\
166 ( ( 0xB7 == ((const U8*)s)[1] ) ? \
167 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x90, 0xAF) ) ? 3 : 0 )\
168 : ( ( 0xBF == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xBE, 0xBF) ) ) ? 3 : 0 )\
169 : ( 0xF0 == ((const U8*)s)[0] ) ? \
170 ( ( ( ( ((const U8*)s)[1] == 0x9F || ( ( ((const U8*)s)[1] & 0xEF ) == 0xAF ) ) && ( 0xBF == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0xBE, 0xBF) ) ) ? 4 : 0 )\
171 : ( inRANGE_helper_(U8, ((const U8*)s)[0], 0xF1, 0xF3) ) ? \
172 ( ( ( ( ( ((const U8*)s)[1] & 0xCF ) == 0x8F ) && ( 0xBF == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0xBE, 0xBF) ) ) ? 4 : 0 )\
173 : ( ( ( ( 0xF4 == ((const U8*)s)[0] ) && ( 0x8F == ((const U8*)s)[1] ) ) && ( 0xBF == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0xBE, 0xBF) ) ) ? 4 : 0 ) : 0 )
176 SURROGATE: Surrogate code points
180 /*** GENERATED CODE ***/
181 #define is_SURROGATE_utf8_safe(s,e) \
182 ( ( ( ( ( ((e) - (s)) >= 3 ) && ( 0xED == ((const U8*)s)[0] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[1], 0xA0, 0xBF) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0xBF) ) ) ? 3 : 0 )
185 QUOTEMETA: Meta-characters that \Q should quote
189 /*** GENERATED CODE ***/
190 #define is_QUOTEMETA_high(s) \
191 ( ( 0xCD == ((const U8*)s)[0] ) ? \
192 ( ( 0x8F == ((const U8*)s)[1] ) ? 2 : 0 ) \
193 : ( 0xD8 == ((const U8*)s)[0] ) ? \
194 ( ( 0x9C == ((const U8*)s)[1] ) ? 2 : 0 ) \
195 : ( 0xE1 == ((const U8*)s)[0] ) ? \
196 ( ( 0x85 == ((const U8*)s)[1] ) ? \
197 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x9F, 0xA0) ) ? 3 : 0 ) \
198 : ( 0x9A == ((const U8*)s)[1] ) ? \
199 ( ( 0x80 == ((const U8*)s)[2] ) ? 3 : 0 ) \
200 : ( 0x9E == ((const U8*)s)[1] ) ? \
201 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xB4, 0xB5) ) ? 3 : 0 ) \
202 : ( ( 0xA0 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x8B, 0x8E) ) ) ? 3 : 0 )\
203 : ( 0xE2 == ((const U8*)s)[0] ) ? \
204 ( ( 0x80 == ((const U8*)s)[1] ) ? \
205 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0xBE) ) ? 3 : 0 ) \
206 : ( 0x81 == ((const U8*)s)[1] ) ? \
207 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x81, 0x93) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x95, 0xAF) ) ? 3 : 0 )\
208 : ( 0x86 == ((const U8*)s)[1] ) ? \
209 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x90, 0xBF) ) ? 3 : 0 ) \
210 : ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x87, 0x90) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x94, 0x9C) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x9F, 0xAF) || inRANGE_helper_(U8, ((const U8*)s)[1], 0xB8, 0xB9) ) ?\
212 : ( 0x91 == ((const U8*)s)[1] ) ? \
213 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0x9F) ) ? 3 : 0 ) \
214 : ( 0x9D == ((const U8*)s)[1] ) ? \
215 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0xB5) ) ? 3 : 0 ) \
216 : ( ( 0x9E == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x94, 0xBF) ) ) ? 3 : 0 )\
217 : ( 0xE3 == ((const U8*)s)[0] ) ? \
218 ( ( 0x80 == ((const U8*)s)[1] ) ? \
219 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0x83) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x88, 0xA0) || 0xB0 == ((const U8*)s)[2] ) ? 3 : 0 )\
220 : ( ( 0x85 == ((const U8*)s)[1] ) && ( 0xA4 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
221 : ( 0xEF == ((const U8*)s)[0] ) ? \
222 ( ( 0xB4 == ((const U8*)s)[1] ) ? \
223 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xBE, 0xBF) ) ? 3 : 0 ) \
224 : ( 0xB8 == ((const U8*)s)[1] ) ? \
225 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0x8F) ) ? 3 : 0 ) \
226 : ( 0xB9 == ((const U8*)s)[1] ) ? \
227 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x85, 0x86) ) ? 3 : 0 ) \
228 : ( 0xBB == ((const U8*)s)[1] ) ? \
229 ( ( 0xBF == ((const U8*)s)[2] ) ? 3 : 0 ) \
230 : ( 0xBE == ((const U8*)s)[1] ) ? \
231 ( ( 0xA0 == ((const U8*)s)[2] ) ? 3 : 0 ) \
232 : ( ( 0xBF == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xB0, 0xB8) ) ) ? 3 : 0 )\
233 : ( 0xF0 == ((const U8*)s)[0] ) ? \
234 ( ( 0x9B == ((const U8*)s)[1] ) ? \
235 ( ( ( 0xB2 == ((const U8*)s)[2] ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0xA0, 0xA3) ) ) ? 4 : 0 )\
236 : ( ( ( 0x9D == ((const U8*)s)[1] ) && ( 0x85 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0xB3, 0xBA) ) ) ? 4 : 0 )\
237 : ( ( 0xF3 == ((const U8*)s)[0] ) && ( 0xA0 == ((const U8*)s)[1] ) ) ? 4 : 0 )
240 MULTI_CHAR_FOLD: multi-char strings that are folded to by a single character
242 ®charclass_multi_char_folds::multi_char_folds('u', 'a')
244 /*** GENERATED CODE ***/
245 #define is_MULTI_CHAR_FOLD_utf8_safe_part0(s,e) \
246 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? \
247 ( ( ( ( ((const U8*)s)[2] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[2] & 0xDF ) == 'L' ) ) ? 3 : 2 )\
248 : ( ( ( ((const U8*)s)[1] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'L' ) ) ? 2 : 0 )
251 /*** GENERATED CODE ***/
252 #define is_MULTI_CHAR_FOLD_utf8_safe_part1(s,e) \
253 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'H' ) ? \
254 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0xB1 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
255 : ( ( ((const U8*)s)[0] & 0xDF ) == 'I' ) ? \
256 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x87 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
257 : ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) ? \
258 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x8C == ((const U8*)s)[2] ) ) ? 3 : 0 )\
259 : ( ( ((const U8*)s)[0] & 0xDF ) == 'S' ) ? \
260 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[1], 's', 't') ) ? 2\
261 : ( ( 0xC5 == ((const U8*)s)[1] ) && ( 0xBF == ((const U8*)s)[2] ) ) ? 3 : 0 )\
262 : ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) ? \
263 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x88 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
264 : ( ( ( ((const U8*)s)[0] & 0xDF ) == 'W' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) ) ?\
265 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x8A == ((const U8*)s)[2] ) ) ? 3 : 0 )\
266 : ( 0xC5 == ((const U8*)s)[0] ) ? \
267 ( ( 0xBF == ((const U8*)s)[1] ) ? \
268 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[2], 's', 't') ) ? 3\
269 : ( ( 0xC5 == ((const U8*)s)[2] ) && ( 0xBF == ((const U8*)s)[3] ) ) ? 4 : 0 )\
271 : ( 0xCA == ((const U8*)s)[0] ) ? \
272 ( ( ( 0xBC == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xDF ) == 'N' ) ) ? 3 : 0 )\
273 : ( 0xCE == ((const U8*)s)[0] ) ? \
274 ( ( ( ((const U8*)s)[1] & 0xFD ) == 0xAC ) ? \
275 ( ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
276 : ( 0xB1 == ((const U8*)s)[1] || 0xB7 == ((const U8*)s)[1] ) ? \
277 ( ( 0xCD == ((const U8*)s)[2] ) ? \
278 ( ( 0x82 == ((const U8*)s)[3] ) ? \
279 ( ( ( 0xCE == ((const U8*)s)[4] ) && ( 0xB9 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
281 : ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
282 : ( 0xB9 == ((const U8*)s)[1] ) ? \
283 ( ( 0xCC == ((const U8*)s)[2] ) ? \
284 ( ( 0x88 == ((const U8*)s)[3] ) ? \
285 ( ( 0xCC == ((const U8*)s)[4] ) ? \
286 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x80, 0x81) ) ? 6 : 0 )\
287 : ( ( 0xCD == ((const U8*)s)[4] ) && ( 0x82 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
289 : ( ( 0xCD == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
291 : ( 0xCF == ((const U8*)s)[0] ) ? \
292 ( ( 0x81 == ((const U8*)s)[1] ) ? \
293 ( ( ( 0xCC == ((const U8*)s)[2] ) && ( 0x93 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
294 : ( 0x85 == ((const U8*)s)[1] ) ? \
295 ( ( 0xCC == ((const U8*)s)[2] ) ? \
296 ( ( 0x88 == ((const U8*)s)[3] ) ? \
297 ( ( 0xCC == ((const U8*)s)[4] ) ? \
298 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x80, 0x81) ) ? 6 : 0 )\
299 : ( ( 0xCD == ((const U8*)s)[4] ) && ( 0x82 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
300 : ( 0x93 == ((const U8*)s)[3] ) ? \
301 ( ( 0xCC == ((const U8*)s)[4] ) ? \
302 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x80, 0x81) ) ? 6 : 4 )\
303 : ( ( 0xCD == ((const U8*)s)[4] ) && ( 0x82 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
305 : ( ( 0xCD == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
306 : ( 0x89 == ((const U8*)s)[1] ) ? \
307 ( ( 0xCD == ((const U8*)s)[2] ) ? \
308 ( ( 0x82 == ((const U8*)s)[3] ) ? \
309 ( ( ( 0xCE == ((const U8*)s)[4] ) && ( 0xB9 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
311 : ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
312 : ( ( ( 0x8E == ((const U8*)s)[1] ) && ( 0xCE == ((const U8*)s)[2] ) ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
313 : ( 0xD5 == ((const U8*)s)[0] ) ? \
314 ( ( 0xA5 == ((const U8*)s)[1] ) ? \
315 ( ( ( 0xD6 == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
316 : ( 0xB4 == ((const U8*)s)[1] ) ? \
317 ( ( ( 0xD5 == ((const U8*)s)[2] ) && ( ( ( ((const U8*)s)[3] & 0xF7 ) == 0xA5 ) || ((const U8*)s)[3] == 0xAB || ((const U8*)s)[3] == 0xB6 ) ) ? 4 : 0 )\
318 : ( ( ( 0xBE == ((const U8*)s)[1] ) && ( 0xD5 == ((const U8*)s)[2] ) ) && ( 0xB6 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
319 : ( 0xE1 == ((const U8*)s)[0] ) ? \
320 ( ( 0xBC == ((const U8*)s)[1] ) ? \
321 ( ( ( ( ( ((const U8*)s)[2] & 0xD8 ) == 0x80 ) && ( 0xCE == ((const U8*)s)[3] ) ) && ( 0xB9 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
322 : ( ( ( ( 0xBD == ((const U8*)s)[1] ) && ( ( ( ((const U8*)s)[2] & 0xF8 ) == 0xA0 ) || ( ( ((const U8*)s)[2] & 0xFB ) == 0xB0 ) || ((const U8*)s)[2] == 0xBC ) ) && ( 0xCE == ((const U8*)s)[3] ) ) && ( 0xB9 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
326 /*** GENERATED CODE ***/
327 #define is_MULTI_CHAR_FOLD_utf8_safe_part2(s,e) \
328 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) ? \
329 ( ( ( 0xCA == ((const U8*)s)[1] ) && ( 0xBE == ((const U8*)s)[2] ) ) ? 3 : 0 )\
330 : ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
331 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? \
332 ( ( ( ( ((const U8*)s)[2] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[2] & 0xDF ) == 'L' ) ) ? 3 : 2 )\
333 : ( ( ( ((const U8*)s)[1] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'L' ) ) ? 2 : 0 )\
334 : ( ( ((const U8*)s)[0] & 0xDF ) == 'H' ) ? \
335 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0xB1 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
336 : ( ( ((const U8*)s)[0] & 0xDF ) == 'I' ) ? \
337 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x87 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
338 : ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) ? \
339 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x8C == ((const U8*)s)[2] ) ) ? 3 : 0 )\
340 : ( ( ((const U8*)s)[0] & 0xDF ) == 'S' ) ? \
341 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[1], 's', 't') ) ? 2\
342 : ( ( 0xC5 == ((const U8*)s)[1] ) && ( 0xBF == ((const U8*)s)[2] ) ) ? 3 : 0 )\
343 : ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) ? \
344 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x88 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
345 : ( ( ( ((const U8*)s)[0] & 0xDF ) == 'W' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) ) ?\
346 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x8A == ((const U8*)s)[2] ) ) ? 3 : 0 )\
347 : ( 0xC5 == ((const U8*)s)[0] ) ? \
348 ( ( 0xBF == ((const U8*)s)[1] ) ? \
349 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[2], 's', 't') ) ? 3\
350 : ( ( 0xC5 == ((const U8*)s)[2] ) && ( 0xBF == ((const U8*)s)[3] ) ) ? 4 : 0 )\
352 : ( 0xCA == ((const U8*)s)[0] ) ? \
353 ( ( ( 0xBC == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xDF ) == 'N' ) ) ? 3 : 0 )\
354 : ( 0xCE == ((const U8*)s)[0] ) ? \
355 ( ( ( ((const U8*)s)[1] & 0xFD ) == 0xAC ) ? \
356 ( ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
357 : ( 0xB1 == ((const U8*)s)[1] || 0xB7 == ((const U8*)s)[1] ) ? \
358 ( ( 0xCD == ((const U8*)s)[2] ) ? \
359 ( ( 0x82 == ((const U8*)s)[3] ) ? 4 : 0 ) \
360 : ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
361 : ( ( ( 0xB9 == ((const U8*)s)[1] ) && ( 0xCD == ((const U8*)s)[2] ) ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
362 : ( 0xCF == ((const U8*)s)[0] ) ? \
363 ( ( 0x81 == ((const U8*)s)[1] ) ? \
364 ( ( ( 0xCC == ((const U8*)s)[2] ) && ( 0x93 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
365 : ( 0x85 == ((const U8*)s)[1] ) ? \
366 ( ( 0xCC == ((const U8*)s)[2] ) ? \
367 ( ( 0x93 == ((const U8*)s)[3] ) ? 4 : 0 ) \
368 : ( ( 0xCD == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
369 : ( 0x89 == ((const U8*)s)[1] ) ? \
370 ( ( 0xCD == ((const U8*)s)[2] ) ? \
371 ( ( 0x82 == ((const U8*)s)[3] ) ? 4 : 0 ) \
372 : ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
373 : ( ( ( 0x8E == ((const U8*)s)[1] ) && ( 0xCE == ((const U8*)s)[2] ) ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
374 : ( 0xD5 == ((const U8*)s)[0] ) ? \
375 ( ( 0xA5 == ((const U8*)s)[1] ) ? \
376 ( ( ( 0xD6 == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
377 : ( 0xB4 == ((const U8*)s)[1] ) ? \
378 ( ( ( 0xD5 == ((const U8*)s)[2] ) && ( ( ( ((const U8*)s)[3] & 0xF7 ) == 0xA5 ) || ((const U8*)s)[3] == 0xAB || ((const U8*)s)[3] == 0xB6 ) ) ? 4 : 0 )\
379 : ( ( ( 0xBE == ((const U8*)s)[1] ) && ( 0xD5 == ((const U8*)s)[2] ) ) && ( 0xB6 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
383 /*** GENERATED CODE ***/
384 #define is_MULTI_CHAR_FOLD_utf8_safe_part3(s,e) \
386 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) ? \
387 ( ( ( 0xCA == ((const U8*)s)[1] ) && ( 0xBE == ((const U8*)s)[2] ) ) ? 3 : 0 )\
388 : ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
389 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? \
390 ( ( ( ( ((const U8*)s)[2] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[2] & 0xDF ) == 'L' ) ) ? 3 : 2 )\
391 : ( ( ( ((const U8*)s)[1] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'L' ) ) ? 2 : 0 )\
392 : ( ( ((const U8*)s)[0] & 0xDF ) == 'H' ) ? \
393 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0xB1 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
394 : ( ( ((const U8*)s)[0] & 0xDF ) == 'I' ) ? \
395 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x87 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
396 : ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) ? \
397 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x8C == ((const U8*)s)[2] ) ) ? 3 : 0 )\
398 : ( ( ((const U8*)s)[0] & 0xDF ) == 'S' ) ? \
399 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[1], 's', 't') ) ? 2\
400 : ( ( 0xC5 == ((const U8*)s)[1] ) && ( 0xBF == ((const U8*)s)[2] ) ) ? 3 : 0 )\
401 : ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) ? \
402 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x88 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
403 : ( ( ( ((const U8*)s)[0] & 0xDF ) == 'W' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) ) ?\
404 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x8A == ((const U8*)s)[2] ) ) ? 3 : 0 )\
405 : ( 0xC5 == ((const U8*)s)[0] ) ? \
406 ( ( ( 0xBF == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[2], 's', 't') ) ) ? 3 : 0 )\
407 : ( ( ( 0xCA == ((const U8*)s)[0] ) && ( 0xBC == ((const U8*)s)[1] ) ) && ( ( ((const U8*)s)[2] & 0xDF ) == 'N' ) ) ? 3 : 0 )\
409 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
410 ( ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'L' ) ) ? 2 : 0 )\
411 : ( ( ( ((const U8*)s)[0] & 0xDF ) == 'S' ) && ( inRANGE_helper_(U8, ((const U8*)s)[1], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[1], 's', 't') ) ) ? 2 : 0 )\
415 /*** GENERATED CODE ***/
416 #define is_MULTI_CHAR_FOLD_utf8_safe(s,e) \
418 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) ? \
419 ( ( ( 0xCA == ((const U8*)s)[1] ) && ( 0xBE == ((const U8*)s)[2] ) ) ? 3 : 0 )\
420 : ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? is_MULTI_CHAR_FOLD_utf8_safe_part0(s,e) : is_MULTI_CHAR_FOLD_utf8_safe_part1(s,e) )\
422 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) ? \
423 ( ( ( 0xCA == ((const U8*)s)[1] ) && ( 0xBE == ((const U8*)s)[2] ) ) ? 3 : 0 )\
424 : ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
425 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? \
426 ( ( ( ( ((const U8*)s)[2] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[2] & 0xDF ) == 'L' ) ) ? 3 : 2 )\
427 : ( ( ( ((const U8*)s)[1] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'L' ) ) ? 2 : 0 )\
428 : ( ( ((const U8*)s)[0] & 0xDF ) == 'H' ) ? \
429 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0xB1 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
430 : ( ( ((const U8*)s)[0] & 0xDF ) == 'I' ) ? \
431 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x87 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
432 : ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) ? \
433 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x8C == ((const U8*)s)[2] ) ) ? 3 : 0 )\
434 : ( ( ((const U8*)s)[0] & 0xDF ) == 'S' ) ? \
435 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[1], 's', 't') ) ? 2\
436 : ( ( 0xC5 == ((const U8*)s)[1] ) && ( 0xBF == ((const U8*)s)[2] ) ) ? 3 : 0 )\
437 : ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) ? \
438 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x88 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
439 : ( ( ( ((const U8*)s)[0] & 0xDF ) == 'W' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) ) ?\
440 ( ( ( 0xCC == ((const U8*)s)[1] ) && ( 0x8A == ((const U8*)s)[2] ) ) ? 3 : 0 )\
441 : ( 0xC5 == ((const U8*)s)[0] ) ? \
442 ( ( 0xBF == ((const U8*)s)[1] ) ? \
443 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[2], 's', 't') ) ? 3\
444 : ( ( 0xC5 == ((const U8*)s)[2] ) && ( 0xBF == ((const U8*)s)[3] ) ) ? 4 : 0 )\
446 : ( 0xCA == ((const U8*)s)[0] ) ? \
447 ( ( ( 0xBC == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xDF ) == 'N' ) ) ? 3 : 0 )\
448 : ( 0xCE == ((const U8*)s)[0] ) ? \
449 ( ( ( ((const U8*)s)[1] & 0xFD ) == 0xAC ) ? \
450 ( ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
451 : ( 0xB1 == ((const U8*)s)[1] || 0xB7 == ((const U8*)s)[1] ) ? \
452 ( ( 0xCD == ((const U8*)s)[2] ) ? \
453 ( ( 0x82 == ((const U8*)s)[3] ) ? 4 : 0 ) \
454 : ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
455 : ( ( ( 0xB9 == ((const U8*)s)[1] ) && ( 0xCD == ((const U8*)s)[2] ) ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
456 : ( 0xCF == ((const U8*)s)[0] ) ? \
457 ( ( 0x81 == ((const U8*)s)[1] ) ? \
458 ( ( ( 0xCC == ((const U8*)s)[2] ) && ( 0x93 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
459 : ( 0x85 == ((const U8*)s)[1] ) ? \
460 ( ( 0xCC == ((const U8*)s)[2] ) ? \
461 ( ( 0x93 == ((const U8*)s)[3] ) ? 4 : 0 ) \
462 : ( ( 0xCD == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
463 : ( 0x89 == ((const U8*)s)[1] ) ? \
464 ( ( 0xCD == ((const U8*)s)[2] ) ? \
465 ( ( 0x82 == ((const U8*)s)[3] ) ? 4 : 0 ) \
466 : ( ( 0xCE == ((const U8*)s)[2] ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
467 : ( ( ( 0x8E == ((const U8*)s)[1] ) && ( 0xCE == ((const U8*)s)[2] ) ) && ( 0xB9 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
468 : ( 0xD5 == ((const U8*)s)[0] ) ? \
469 ( ( 0xA5 == ((const U8*)s)[1] ) ? \
470 ( ( ( 0xD6 == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
471 : ( 0xB4 == ((const U8*)s)[1] ) ? \
472 ( ( ( 0xD5 == ((const U8*)s)[2] ) && ( ( ( ((const U8*)s)[3] & 0xF7 ) == 0xA5 ) || ((const U8*)s)[3] == 0xAB || ((const U8*)s)[3] == 0xB6 ) ) ? 4 : 0 )\
473 : ( ( ( 0xBE == ((const U8*)s)[1] ) && ( 0xD5 == ((const U8*)s)[2] ) ) && ( 0xB6 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
474 : ( 0xE1 == ((const U8*)s)[0] ) ? \
475 ( ( 0xBC == ((const U8*)s)[1] ) ? \
476 ( ( ( ( ( ((const U8*)s)[2] & 0xD8 ) == 0x80 ) && ( 0xCE == ((const U8*)s)[3] ) ) && ( 0xB9 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
477 : ( ( ( ( 0xBD == ((const U8*)s)[1] ) && ( ( ( ((const U8*)s)[2] & 0xF8 ) == 0xA0 ) || ( ( ((const U8*)s)[2] & 0xFB ) == 0xB0 ) || ((const U8*)s)[2] == 0xBC ) ) && ( 0xCE == ((const U8*)s)[3] ) ) && ( 0xB9 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
479 : ((e)-(s) > 3) ? is_MULTI_CHAR_FOLD_utf8_safe_part2(s,e) : is_MULTI_CHAR_FOLD_utf8_safe_part3(s,e) )
482 MULTI_CHAR_FOLD: multi-char strings that are folded to by a single character
484 ®charclass_multi_char_folds::multi_char_folds('l', 'a')
486 /*** GENERATED CODE ***/
487 #define is_MULTI_CHAR_FOLD_latin1_safe(s,e) \
489 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
490 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? \
491 ( ( ( ( ((const U8*)s)[2] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[2] & 0xDF ) == 'L' ) ) ? 3 : 2 )\
492 : ( ( ( ((const U8*)s)[1] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'L' ) ) ? 2 : 0 )\
493 : ( ( ( ((const U8*)s)[0] & 0xDF ) == 'S' ) && ( inRANGE_helper_(U8, ((const U8*)s)[1], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[1], 's', 't') ) ) ? 2 : 0 )\
495 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
496 ( ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[1] & 0xDF ) == 'L' ) ) ? 2 : 0 )\
497 : ( ( ( ((const U8*)s)[0] & 0xDF ) == 'S' ) && ( inRANGE_helper_(U8, ((const U8*)s)[1], 'S', 'T') || inRANGE_helper_(U8, ((const U8*)s)[1], 's', 't') ) ) ? 2 : 0 )\
501 THREE_CHAR_FOLD: A three-character multi-char fold
503 ®charclass_multi_char_folds::multi_char_folds('u', '3')
505 /*** GENERATED CODE ***/
506 #define is_THREE_CHAR_FOLD_utf8_safe(s,e) \
508 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
509 ( ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) && ( ( ( ((const U8*)s)[2] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[2] & 0xDF ) == 'L' ) ) ) ? 3 : 0 )\
510 : ( 0xCE == ((const U8*)s)[0] ) ? \
511 ( ( 0xB1 == ((const U8*)s)[1] || 0xB7 == ((const U8*)s)[1] ) ? \
512 ( ( ( ( ( 0xCD == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) && ( 0xCE == ((const U8*)s)[4] ) ) && ( 0xB9 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
513 : ( ( ( 0xB9 == ((const U8*)s)[1] ) && ( 0xCC == ((const U8*)s)[2] ) ) && ( 0x88 == ((const U8*)s)[3] ) ) ? ( ( 0xCC == ((const U8*)s)[4] ) ?\
514 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x80, 0x81) ) ? 6 : 0 )\
515 : ( ( 0xCD == ((const U8*)s)[4] ) && ( 0x82 == ((const U8*)s)[5] ) ) ? 6 : 0 ) : 0 )\
516 : ( 0xCF == ((const U8*)s)[0] ) ? \
517 ( ( 0x85 == ((const U8*)s)[1] ) ? \
518 ( ( ( 0xCC == ((const U8*)s)[2] ) && ( 0x88 == ((const U8*)s)[3] || 0x93 == ((const U8*)s)[3] ) ) ? ( ( 0xCC == ((const U8*)s)[4] ) ?\
519 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x80, 0x81) ) ? 6 : 0 )\
520 : ( ( 0xCD == ((const U8*)s)[4] ) && ( 0x82 == ((const U8*)s)[5] ) ) ? 6 : 0 ) : 0 )\
521 : ( ( ( ( ( 0x89 == ((const U8*)s)[1] ) && ( 0xCD == ((const U8*)s)[2] ) ) && ( 0x82 == ((const U8*)s)[3] ) ) && ( 0xCE == ((const U8*)s)[4] ) ) && ( 0xB9 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
523 : ( ( ( ((e)-(s) > 2) && ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ) && ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ) && ( ( ( ((const U8*)s)[2] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[2] & 0xDF ) == 'L' ) ) ) ? 3 : 0 )
526 THREE_CHAR_FOLD: A three-character multi-char fold
528 ®charclass_multi_char_folds::multi_char_folds('l', '3')
530 /*** GENERATED CODE ***/
531 #define is_THREE_CHAR_FOLD_latin1_safe(s,e) \
532 ( ( ( ( ( ((e) - (s)) >= 3 ) && ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ) && ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ) && ( ( ( ((const U8*)s)[2] & 0xDF ) == 'I' ) || ( ( ((const U8*)s)[2] & 0xDF ) == 'L' ) ) ) ? 3 : 0 )
535 THREE_CHAR_FOLD_HEAD: The first two of three-character multi-char folds
537 ®charclass_multi_char_folds::multi_char_folds('u', 'h')
539 /*** GENERATED CODE ***/
540 #define is_THREE_CHAR_FOLD_HEAD_utf8_safe(s,e) \
542 ( ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) || ( ( ((const U8*)s)[0] & 0xDE ) == 'H' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) || ( ( ((const U8*)s)[0] & 0xDB ) == 'S' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) ) ? 1\
543 : ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
544 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? 2 : 1 ) \
545 : ( 0xC5 == ((const U8*)s)[0] ) ? \
546 ( ( 0xBF == ((const U8*)s)[1] ) ? 2 : 0 ) \
547 : ( 0xCA == ((const U8*)s)[0] ) ? \
548 ( ( 0xBC == ((const U8*)s)[1] ) ? 2 : 0 ) \
549 : ( 0xCE == ((const U8*)s)[0] ) ? \
550 ( ( ( ((const U8*)s)[1] & 0xFD ) == 0xAC ) ? 2 \
551 : ( 0xB1 == ((const U8*)s)[1] || 0xB7 == ((const U8*)s)[1] ) ? \
552 ( ( ( 0xCD == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
553 : ( 0xB9 == ((const U8*)s)[1] ) ? \
554 ( ( ( 0xCC == ((const U8*)s)[2] ) && ( 0x88 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
556 : ( 0xCF == ((const U8*)s)[0] ) ? \
557 ( ( 0x81 == ((const U8*)s)[1] || 0x8E == ((const U8*)s)[1] ) ? 2 \
558 : ( 0x85 == ((const U8*)s)[1] ) ? \
559 ( ( ( 0xCC == ((const U8*)s)[2] ) && ( 0x88 == ((const U8*)s)[3] || 0x93 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
560 : ( 0x89 == ((const U8*)s)[1] ) ? \
561 ( ( ( 0xCD == ((const U8*)s)[2] ) && ( 0x82 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
563 : ( 0xD5 == ((const U8*)s)[0] ) ? \
564 ( ( 0xA5 == ((const U8*)s)[1] || 0xB4 == ((const U8*)s)[1] || 0xBE == ((const U8*)s)[1] ) ? 2 : 0 )\
565 : ( 0xE1 == ((const U8*)s)[0] ) ? \
566 ( ( 0xBC == ((const U8*)s)[1] ) ? \
567 ( ( ( ((const U8*)s)[2] & 0xD8 ) == 0x80 ) ? 3 : 0 ) \
568 : ( ( 0xBD == ((const U8*)s)[1] ) && ( ( ( ((const U8*)s)[2] & 0xF8 ) == 0xA0 ) || ( ( ((const U8*)s)[2] & 0xFB ) == 0xB0 ) || ((const U8*)s)[2] == 0xBC ) ) ? 3 : 0 )\
571 ( ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) || ( ( ((const U8*)s)[0] & 0xDE ) == 'H' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) || ( ( ((const U8*)s)[0] & 0xDB ) == 'S' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) ) ? 1\
572 : ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
573 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? 2 : 1 ) \
574 : ( 0xC5 == ((const U8*)s)[0] ) ? \
575 ( ( 0xBF == ((const U8*)s)[1] ) ? 2 : 0 ) \
576 : ( 0xCA == ((const U8*)s)[0] ) ? \
577 ( ( 0xBC == ((const U8*)s)[1] ) ? 2 : 0 ) \
578 : ( 0xCE == ((const U8*)s)[0] ) ? \
579 ( ( ( ( ((const U8*)s)[1] & 0xFD ) == 0xAC ) || ( ( ((const U8*)s)[1] & 0xF7 ) == 0xB1 ) || ((const U8*)s)[1] == 0xB7 ) ? 2 : 0 )\
580 : ( 0xCF == ((const U8*)s)[0] ) ? \
581 ( ( ( ( ((const U8*)s)[1] & 0xFB ) == 0x81 ) || ((const U8*)s)[1] == 0x89 || ((const U8*)s)[1] == 0x8E ) ? 2 : 0 )\
582 : ( 0xD5 == ((const U8*)s)[0] ) ? \
583 ( ( 0xA5 == ((const U8*)s)[1] || 0xB4 == ((const U8*)s)[1] || 0xBE == ((const U8*)s)[1] ) ? 2 : 0 )\
584 : ( 0xE1 == ((const U8*)s)[0] ) ? \
585 ( ( 0xBC == ((const U8*)s)[1] ) ? \
586 ( ( ( ((const U8*)s)[2] & 0xD8 ) == 0x80 ) ? 3 : 0 ) \
587 : ( ( 0xBD == ((const U8*)s)[1] ) && ( ( ( ((const U8*)s)[2] & 0xF8 ) == 0xA0 ) || ( ( ((const U8*)s)[2] & 0xFB ) == 0xB0 ) || ((const U8*)s)[2] == 0xBC ) ) ? 3 : 0 )\
590 ( ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) || ( ( ((const U8*)s)[0] & 0xDE ) == 'H' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) || ( ( ((const U8*)s)[0] & 0xDB ) == 'S' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) ) ? 1\
591 : ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
592 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? 2 : 1 ) \
593 : ( 0xC5 == ((const U8*)s)[0] ) ? \
594 ( ( 0xBF == ((const U8*)s)[1] ) ? 2 : 0 ) \
595 : ( 0xCA == ((const U8*)s)[0] ) ? \
596 ( ( 0xBC == ((const U8*)s)[1] ) ? 2 : 0 ) \
597 : ( 0xCE == ((const U8*)s)[0] ) ? \
598 ( ( ( ( ((const U8*)s)[1] & 0xFD ) == 0xAC ) || ( ( ((const U8*)s)[1] & 0xF7 ) == 0xB1 ) || ((const U8*)s)[1] == 0xB7 ) ? 2 : 0 )\
599 : ( 0xCF == ((const U8*)s)[0] ) ? \
600 ( ( ( ( ((const U8*)s)[1] & 0xFB ) == 0x81 ) || ((const U8*)s)[1] == 0x89 || ((const U8*)s)[1] == 0x8E ) ? 2 : 0 )\
601 : ( ( 0xD5 == ((const U8*)s)[0] ) && ( 0xA5 == ((const U8*)s)[1] || 0xB4 == ((const U8*)s)[1] || 0xBE == ((const U8*)s)[1] ) ) ? 2 : 0 )\
603 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) || ( ( ((const U8*)s)[0] & 0xDE ) == 'H' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) || ( ( ((const U8*)s)[0] & 0xDB ) == 'S' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) )\
607 THREE_CHAR_FOLD_HEAD: The first two of three-character multi-char folds
609 ®charclass_multi_char_folds::multi_char_folds('l', 'h')
611 /*** GENERATED CODE ***/
612 #define is_THREE_CHAR_FOLD_HEAD_latin1_safe(s,e) \
614 ( ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) || ( ( ((const U8*)s)[0] & 0xDE ) == 'H' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) || ( ( ((const U8*)s)[0] & 0xDB ) == 'S' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) ) ? 1\
615 : ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) ? \
616 ( ( ( ((const U8*)s)[1] & 0xDF ) == 'F' ) ? 2 : 1 ) \
619 ( ( ( ((const U8*)s)[0] & 0xDF ) == 'A' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'F' ) || ( ( ((const U8*)s)[0] & 0xDE ) == 'H' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'J' ) || ( ( ((const U8*)s)[0] & 0xDB ) == 'S' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'T' ) || ( ( ((const U8*)s)[0] & 0xDF ) == 'Y' ) )\
623 FOLDS_TO_MULTI: characters that fold to multi-char strings
625 \p{_Perl_Folds_To_Multi_Char}
627 /*** GENERATED CODE ***/
628 #define is_FOLDS_TO_MULTI_utf8(s) \
629 ( ( 0xC3 == ((const U8*)s)[0] ) ? \
630 ( ( 0x9F == ((const U8*)s)[1] ) ? 2 : 0 ) \
631 : ( 0xC4 == ((const U8*)s)[0] || 0xC7 == ((const U8*)s)[0] ) ? \
632 ( ( 0xB0 == ((const U8*)s)[1] ) ? 2 : 0 ) \
633 : ( 0xC5 == ((const U8*)s)[0] ) ? \
634 ( ( 0x89 == ((const U8*)s)[1] ) ? 2 : 0 ) \
635 : ( 0xCE == ((const U8*)s)[0] ) ? \
636 ( ( ( ((const U8*)s)[1] & 0xDF ) == 0x90 ) ? 2 : 0 ) \
637 : ( 0xD6 == ((const U8*)s)[0] ) ? \
638 ( ( 0x87 == ((const U8*)s)[1] ) ? 2 : 0 ) \
639 : ( 0xE1 == ((const U8*)s)[0] ) ? \
640 ( ( 0xBA == ((const U8*)s)[1] ) ? \
641 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x96, 0x9A) || 0x9E == ((const U8*)s)[2] ) ? 3 : 0 )\
642 : ( 0xBD == ((const U8*)s)[1] ) ? \
643 ( ( ( ((const U8*)s)[2] & 0xF9 ) == 0x90 ) ? 3 : 0 ) \
644 : ( 0xBE == ((const U8*)s)[1] ) ? \
645 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0xAF) || inRANGE_helper_(U8, ((const U8*)s)[2], 0xB2, 0xB4) || inRANGE_helper_(U8, ((const U8*)s)[2], 0xB6, 0xB7) || 0xBC == ((const U8*)s)[2] ) ? 3 : 0 )\
646 : ( ( 0xBF == ((const U8*)s)[1] ) && ( ( ( ((const U8*)s)[2] & 0xCA ) == 0x82 ) || ( ( ((const U8*)s)[2] & 0xF7 ) == 0x84 ) || ((const U8*)s)[2] == 0xA4 || ( ( ((const U8*)s)[2] & 0xF7 ) == 0xB4 ) ) ) ? 3 : 0 )\
647 : ( ( ( 0xEF == ((const U8*)s)[0] ) && ( 0xAC == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0x86) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x93, 0x97) ) ) ? 3 : 0 )
650 PROBLEMATIC_LOCALE_FOLD: characters whose fold is problematic under locale
652 \p{_Perl_Problematic_Locale_Folds}
654 /*** GENERATED CODE ***/
655 #define is_PROBLEMATIC_LOCALE_FOLD_utf8(s) \
656 ( ( ((const U8*)s)[0] <= 0x7F ) ? 1 \
657 : ( inRANGE_helper_(U8, ((const U8*)s)[0], 0xC2, 0xC3) ) ? \
659 : ( 0xC4 == ((const U8*)s)[0] ) ? \
660 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0xB0, 0xB1) ) ? 2 : 0 ) \
661 : ( 0xC5 == ((const U8*)s)[0] ) ? \
662 ( ( 0x89 == ((const U8*)s)[1] || 0xB8 == ((const U8*)s)[1] || 0xBF == ((const U8*)s)[1] ) ? 2 : 0 )\
663 : ( 0xC7 == ((const U8*)s)[0] ) ? \
664 ( ( 0xB0 == ((const U8*)s)[1] ) ? 2 : 0 ) \
665 : ( 0xCC == ((const U8*)s)[0] ) ? \
666 ( ( 0x87 == ((const U8*)s)[1] ) ? 2 : 0 ) \
667 : ( 0xCE == ((const U8*)s)[0] ) ? \
668 ( ( ( ((const U8*)s)[1] & 0xDF ) == 0x9C ) ? 2 : 0 ) \
669 : ( 0xE1 == ((const U8*)s)[0] ) ? \
670 ( ( ( 0xBA == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x96, 0x9A) || 0x9E == ((const U8*)s)[2] ) ) ? 3 : 0 )\
671 : ( 0xE2 == ((const U8*)s)[0] ) ? \
672 ( ( ( 0x84 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xAA, 0xAB) ) ) ? 3 : 0 )\
673 : ( ( ( 0xEF == ((const U8*)s)[0] ) && ( 0xAC == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0x86) ) ) ? 3 : 0 )
675 /*** GENERATED CODE ***/
676 #define is_PROBLEMATIC_LOCALE_FOLD_cp(cp) \
677 ( cp <= 0xFF || ( 0xFF < cp && \
678 ( inRANGE_helper_(UV, cp, 0x130, 0x131) || ( 0x131 < cp && \
679 ( 0x149 == cp || ( 0x149 < cp && \
680 ( 0x178 == cp || ( 0x178 < cp && \
681 ( 0x17F == cp || ( 0x17F < cp && \
682 ( 0x1F0 == cp || ( 0x1F0 < cp && \
683 ( 0x307 == cp || ( 0x307 < cp && \
684 ( 0x39C == cp || ( 0x39C < cp && \
685 ( 0x3BC == cp || ( 0x3BC < cp && \
686 ( inRANGE_helper_(UV, cp, 0x1E96, 0x1E9A) || ( 0x1E9A < cp && \
687 ( 0x1E9E == cp || ( 0x1E9E < cp && \
688 ( inRANGE_helper_(UV, cp, 0x212A, 0x212B) || inRANGE_helper_(UV, cp, 0xFB00, 0xFB06) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
691 PROBLEMATIC_LOCALE_FOLDEDS_START: The first folded character of folds which are problematic under locale
693 \p{_Perl_Problematic_Locale_Foldeds_Start}
695 /*** GENERATED CODE ***/
696 #define is_PROBLEMATIC_LOCALE_FOLDEDS_START_utf8(s) \
697 ( ( ((const U8*)s)[0] <= 0x7F ) ? 1 \
698 : ( inRANGE_helper_(U8, ((const U8*)s)[0], 0xC2, 0xC3) ) ? \
700 : ( 0xC4 == ((const U8*)s)[0] ) ? \
701 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0xB0, 0xB1) ) ? 2 : 0 ) \
702 : ( 0xC5 == ((const U8*)s)[0] ) ? \
703 ( ( 0x89 == ((const U8*)s)[1] || 0xB8 == ((const U8*)s)[1] || 0xBF == ((const U8*)s)[1] ) ? 2 : 0 )\
704 : ( 0xC7 == ((const U8*)s)[0] ) ? \
705 ( ( 0xB0 == ((const U8*)s)[1] ) ? 2 : 0 ) \
706 : ( 0xCA == ((const U8*)s)[0] ) ? \
707 ( ( 0xBC == ((const U8*)s)[1] ) ? 2 : 0 ) \
708 : ( 0xCE == ((const U8*)s)[0] ) ? \
709 ( ( ( ((const U8*)s)[1] & 0xDF ) == 0x9C ) ? 2 : 0 ) \
710 : ( 0xE1 == ((const U8*)s)[0] ) ? \
711 ( ( ( 0xBA == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x96, 0x9A) || 0x9E == ((const U8*)s)[2] ) ) ? 3 : 0 )\
712 : ( 0xE2 == ((const U8*)s)[0] ) ? \
713 ( ( ( 0x84 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0xAA, 0xAB) ) ) ? 3 : 0 )\
714 : ( ( ( 0xEF == ((const U8*)s)[0] ) && ( 0xAC == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0x86) ) ) ? 3 : 0 )
716 /*** GENERATED CODE ***/
717 #define is_PROBLEMATIC_LOCALE_FOLDEDS_START_cp(cp) \
718 ( cp <= 0xFF || ( 0xFF < cp && \
719 ( inRANGE_helper_(UV, cp, 0x130, 0x131) || ( 0x131 < cp && \
720 ( 0x149 == cp || ( 0x149 < cp && \
721 ( 0x178 == cp || ( 0x178 < cp && \
722 ( 0x17F == cp || ( 0x17F < cp && \
723 ( 0x1F0 == cp || ( 0x1F0 < cp && \
724 ( 0x2BC == cp || ( 0x2BC < cp && \
725 ( 0x39C == cp || ( 0x39C < cp && \
726 ( 0x3BC == cp || ( 0x3BC < cp && \
727 ( inRANGE_helper_(UV, cp, 0x1E96, 0x1E9A) || ( 0x1E9A < cp && \
728 ( 0x1E9E == cp || ( 0x1E9E < cp && \
729 ( inRANGE_helper_(UV, cp, 0x212A, 0x212B) || inRANGE_helper_(UV, cp, 0xFB00, 0xFB06) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
732 PATWS: pattern white space
736 /*** GENERATED CODE ***/
737 #define is_PATWS_safe(s,e,is_utf8) \
738 ( ( LIKELY((e) > (s)) ) ? \
739 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\t', '\r') || ' ' == ((const U8*)s)[0] ) ? 1\
741 ( 0x85 == ((const U8*)s)[0] ) \
742 : ( LIKELY(((e) - (s)) >= UTF8SKIP(s)) ) ? \
743 ( ( 0xC2 == ((const U8*)s)[0] ) ? \
744 ( ( 0x85 == ((const U8*)s)[1] ) ? 2 : 0 ) \
745 : ( ( ( 0xE2 == ((const U8*)s)[0] ) && ( 0x80 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x8E, 0x8F) || inRANGE_helper_(U8, ((const U8*)s)[2], 0xA8, 0xA9) ) ) ? 3 : 0 )\
750 HANGUL_ED: Hangul syllables whose first character is \xED
754 /*** GENERATED CODE ***/
755 #define is_HANGUL_ED_utf8_safe(s,e) \
756 ( ( ( ( ( ((e) - (s)) >= 3 ) && ( 0xED == ((const U8*)s)[0] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x80, 0x9F) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x80, 0xBF) ) ) ? 3 : 0 )
758 #endif /* ASCII/Latin1 */
760 #if 'A' == 193 /* EBCDIC 1047 */ \
761 && '\\' == 224 && '[' == 173 && ']' == 189 && '{' == 192 && '}' == 208 \
762 && '^' == 95 && '~' == 161 && '!' == 90 && '#' == 123 && '|' == 79 \
763 && '$' == 91 && '@' == 124 && '`' == 121 && '\n' == 21
765 LNBREAK: Line Break: \R
767 "\x0D\x0A" # CRLF - Network (Windows) line ending
770 /*** GENERATED CODE ***/
771 #define is_LNBREAK_safe(s,e,is_utf8) \
773 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] ) ? 1\
774 : ( '\r' == ((const U8*)s)[0] ) ? \
775 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
776 : ( ( ( ( is_utf8 ) && ( 0xCA == ((const U8*)s)[0] ) ) && ( 0x42 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) ) ) ? 3 : 0 )\
778 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] ) ? 1\
779 : ( '\r' == ((const U8*)s)[0] ) ? \
780 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
783 ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\r') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] )\
786 /*** GENERATED CODE ***/
787 #define is_LNBREAK_utf8_safe(s,e) \
789 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] ) ? 1\
790 : ( '\r' == ((const U8*)s)[0] ) ? \
791 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
792 : ( ( ( 0xCA == ((const U8*)s)[0] ) && ( 0x42 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) ) ) ? 3 : 0 )\
794 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] ) ? 1\
795 : ( '\r' == ((const U8*)s)[0] ) ? \
796 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
799 ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\r') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] )\
802 /*** GENERATED CODE ***/
803 #define is_LNBREAK_latin1_safe(s,e) \
805 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] ) ? 1\
806 : ( '\r' == ((const U8*)s)[0] ) ? \
807 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
810 ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\r') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] )\
814 HORIZWS: Horizontal Whitespace: \h \H
818 /*** GENERATED CODE ***/
819 #define is_HORIZWS_high(s) \
820 ( ( 0xBC == ((const U8*)s)[0] ) ? \
821 ( ( ( 0x63 == ((const U8*)s)[1] ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
822 : ( 0xCA == ((const U8*)s)[0] ) ? \
823 ( ( 0x41 == ((const U8*)s)[1] ) ? \
824 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || 0x51 == ((const U8*)s)[2] ) ? 3 : 0 )\
825 : ( 0x42 == ((const U8*)s)[1] ) ? \
826 ( ( 0x56 == ((const U8*)s)[2] ) ? 3 : 0 ) \
827 : ( ( 0x43 == ((const U8*)s)[1] ) && ( 0x73 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
828 : ( ( ( 0xCE == ((const U8*)s)[0] ) && ( 0x41 == ((const U8*)s)[1] ) ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )
830 /*** GENERATED CODE ***/
831 #define is_HORIZWS_cp_high(cp) \
832 ( 0x1680 == cp || ( 0x1680 < cp && \
833 ( inRANGE_helper_(UV, cp, 0x2000, 0x200A) || ( 0x200A < cp && \
834 ( 0x202F == cp || ( 0x202F < cp && \
835 ( 0x205F == cp || 0x3000 == cp ) ) ) ) ) ) )
838 VERTWS: Vertical Whitespace: \v \V
842 /*** GENERATED CODE ***/
843 #define is_VERTWS_high(s) \
844 ( ( ( ( 0xCA == ((const U8*)s)[0] ) && ( 0x42 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) ) ) ? 3 : 0 )
846 /*** GENERATED CODE ***/
847 #define is_VERTWS_cp_high(cp) \
848 ( inRANGE_helper_(UV, cp, 0x2028, 0x2029) )
851 XDIGIT: Hexadecimal digits
855 /*** GENERATED CODE ***/
856 #define is_XDIGIT_high(s) \
857 ( ( ( 0xDD == ((const U8*)s)[0] ) && ( 0x73 == ((const U8*)s)[1] ) ) ? ( ( 0x67 == ((const U8*)s)[2] ) ?\
858 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x57, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x68) ) ? 4 : 0 )\
859 : ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x68, 0x69) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x42, 0x47) ) ) ? 4 : 0 ) : 0 )
861 /*** GENERATED CODE ***/
862 #define is_XDIGIT_cp_high(cp) \
863 ( inRANGE_helper_(UV, cp, 0xFF10, 0xFF19) || ( 0xFF19 < cp && \
864 ( inRANGE_helper_(UV, cp, 0xFF21, 0xFF26) || inRANGE_helper_(UV, cp, 0xFF41, 0xFF46) ) ) )
867 XPERLSPACE: \p{XPerlSpace}
871 /*** GENERATED CODE ***/
872 #define is_XPERLSPACE_high(s) \
873 ( ( 0xBC == ((const U8*)s)[0] ) ? \
874 ( ( ( 0x63 == ((const U8*)s)[1] ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
875 : ( 0xCA == ((const U8*)s)[0] ) ? \
876 ( ( 0x41 == ((const U8*)s)[1] ) ? \
877 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || 0x51 == ((const U8*)s)[2] ) ? 3 : 0 )\
878 : ( 0x42 == ((const U8*)s)[1] ) ? \
879 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) || 0x56 == ((const U8*)s)[2] ) ? 3 : 0 )\
880 : ( ( 0x43 == ((const U8*)s)[1] ) && ( 0x73 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
881 : ( ( ( 0xCE == ((const U8*)s)[0] ) && ( 0x41 == ((const U8*)s)[1] ) ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )
883 /*** GENERATED CODE ***/
884 #define is_XPERLSPACE_cp_high(cp) \
885 ( 0x1680 == cp || ( 0x1680 < cp && \
886 ( inRANGE_helper_(UV, cp, 0x2000, 0x200A) || ( 0x200A < cp && \
887 ( inRANGE_helper_(UV, cp, 0x2028, 0x2029) || ( 0x2029 < cp && \
888 ( 0x202F == cp || ( 0x202F < cp && \
889 ( 0x205F == cp || 0x3000 == cp ) ) ) ) ) ) ) ) )
892 NONCHAR: Non character code points
896 /*** GENERATED CODE ***/
897 #define is_NONCHAR_utf8_safe(s,e) \
898 ( ( ( LIKELY((e) > (s)) ) && ( LIKELY(((e) - (s)) >= UTF8SKIP(s)) ) ) ? ( ( 0xDD == ((const U8*)s)[0] ) ?\
899 ( ( 0x73 == ((const U8*)s)[1] ) ? \
900 ( ( 0x55 == ((const U8*)s)[2] ) ? \
901 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x57, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x70, 0x73) ) ? 4 : 0 )\
902 : ( 0x56 == ((const U8*)s)[2] ) ? \
903 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x51, 0x56) ) ? 4 : 0 )\
904 : ( ( 0x73 == ((const U8*)s)[2] ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x72, 0x73) ) ) ? 4 : 0 )\
906 : ( 0xDF == ((const U8*)s)[0] || 0xEA == ((const U8*)s)[0] || 0xEC == ((const U8*)s)[0] ) ?\
907 ( ( ( ( 0x73 == ((const U8*)s)[1] ) && ( 0x73 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x72, 0x73) ) ) ? 4 : 0 )\
908 : ( 0xED == ((const U8*)s)[0] ) ? \
909 ( ( ( ( ( ((const U8*)s)[1] == 0x4A || ((const U8*)s)[1] == 0x52 || ( ( ((const U8*)s)[1] & 0xFD ) == 0x54 ) || ((const U8*)s)[1] == 0x58 || ((const U8*)s)[1] == 0x62 || ( ( ((const U8*)s)[1] & 0xFD ) == 0x64 ) || ( ( ((const U8*)s)[1] & 0xFD ) == 0x68 ) || ( ( ((const U8*)s)[1] & 0xFD ) == 0x71 ) ) && ( 0x73 == ((const U8*)s)[2] ) ) && ( 0x73 == ((const U8*)s)[3] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[4], 0x72, 0x73) ) ) ? 5 : 0 )\
910 : ( ( ( ( ( 0xEE == ((const U8*)s)[0] ) && ( 0x42 == ((const U8*)s)[1] ) ) && ( 0x73 == ((const U8*)s)[2] ) ) && ( 0x73 == ((const U8*)s)[3] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[4], 0x72, 0x73) ) ) ? 5 : 0 ) : 0 )
913 SURROGATE: Surrogate code points
917 /*** GENERATED CODE ***/
918 #define is_SURROGATE_utf8_safe(s,e) \
919 ( ( ( ( ( ( ((e) - (s)) >= 4 ) && ( 0xDD == ((const U8*)s)[0] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x65, 0x66) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x70, 0x73) ) ) ? 4 : 0 )
922 QUOTEMETA: Meta-characters that \Q should quote
926 /*** GENERATED CODE ***/
927 #define is_QUOTEMETA_high_part0(s) \
928 ( ( 0x63 == ((const U8*)s)[1] ) ? \
929 ( ( 0x41 == ((const U8*)s)[2] ) ? 3 : 0 ) \
930 : ( ( 0x71 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x63, 0x64) ) ) ? 3 : 0 )
933 /*** GENERATED CODE ***/
934 #define is_QUOTEMETA_high_part1(s) \
935 ( ( 0xBE == ((const U8*)s)[0] ) ? \
936 ( ( ( 0x41 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x52, 0x55) ) ) ? 3 : 0 )\
937 : ( 0xCA == ((const U8*)s)[0] ) ? \
938 ( ( 0x41 == ((const U8*)s)[1] || inRANGE_helper_(U8, ((const U8*)s)[1], 0x54, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x73) ) ?\
939 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ? 3 : 0 )\
940 : ( 0x42 == ((const U8*)s)[1] ) ? \
941 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ? 3 : 0 )\
942 : ( 0x43 == ((const U8*)s)[1] ) ? \
943 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x42, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x62 == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x64, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ? 3 : 0 )\
944 : ( 0x44 == ((const U8*)s)[1] ) ? \
945 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x56) ) ? 3 : 0 )\
946 : ( ( 0x53 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x57, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ) ? 3 : 0 )\
947 : ( 0xCB == ((const U8*)s)[0] ) ? \
948 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x41, 0x43) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x49, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x69) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x71, 0x73) ) ?\
949 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ? 3 : 0 )\
950 : ( 0x6A == ((const U8*)s)[1] ) ? \
951 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x64) ) ? 3 : 0 )\
952 : ( ( 0x70 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x63, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ) ? 3 : 0 )\
953 : ( 0xCC == ((const U8*)s)[0] ) ? \
954 ( ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x73) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ) ? 3 : 0 )\
955 : ( 0xCD == ((const U8*)s)[0] ) ? \
956 ( ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x57, 0x59) || 0x62 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ) ? 3 : 0 )\
957 : ( 0xCE == ((const U8*)s)[0] ) ? \
958 ( ( 0x41 == ((const U8*)s)[1] ) ? \
959 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x44) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ? 3 : 0 )\
960 : ( 0x42 == ((const U8*)s)[1] ) ? \
961 ( ( 0x41 == ((const U8*)s)[2] || 0x57 == ((const U8*)s)[2] ) ? 3 : 0 )\
962 : ( ( 0x52 == ((const U8*)s)[1] ) && ( 0x45 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
963 : ( 0xDD == ((const U8*)s)[0] ) ? \
964 ( ( 0x73 == ((const U8*)s)[1] ) ? \
965 ( ( 0x4A == ((const U8*)s)[2] ) ? \
966 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x72, 0x73) ) ? 4 : 0 )\
967 : ( 0x57 == ((const U8*)s)[2] ) ? \
968 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x51, 0x56) ) ? 4 : 0 )\
969 : ( 0x59 == ((const U8*)s)[2] ) ? \
970 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x46, 0x47) ) ? 4 : 0 )\
971 : ( 0x66 == ((const U8*)s)[2] ) ? \
972 ( ( 0x73 == ((const U8*)s)[3] ) ? 4 : 0 ) \
973 : ( 0x71 == ((const U8*)s)[2] ) ? \
974 ( ( 0x41 == ((const U8*)s)[3] ) ? 4 : 0 ) \
975 : ( ( 0x73 == ((const U8*)s)[2] ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x57, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x67) ) ) ? 4 : 0 )\
977 : ( 0xDF == ((const U8*)s)[0] ) ? \
978 ( ( 0x56 == ((const U8*)s)[1] ) ? \
979 ( ( ( 0x46 == ((const U8*)s)[2] ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x44) ) ) ? 4 : 0 )\
980 : ( ( ( 0x63 == ((const U8*)s)[1] ) && ( 0x52 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x69) ) ) ? 4 : 0 )\
981 : ( ( ( ( ( 0xED == ((const U8*)s)[0] ) && ( 0x70 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x44) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x70, 0x73) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[4], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[4], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[4], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[4], 0x70, 0x73) ) ) ? 5 : 0 )
984 /*** GENERATED CODE ***/
985 #define is_QUOTEMETA_high(s) \
986 ( ( 0xB1 == ((const U8*)s)[0] ) ? \
987 ( ( 0x56 == ((const U8*)s)[1] ) ? 2 : 0 ) \
988 : ( 0xB8 == ((const U8*)s)[0] ) ? \
989 ( ( ( 0x57 == ((const U8*)s)[1] ) && ( 0x70 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
990 : ( 0xBB == ((const U8*)s)[0] ) ? \
991 ( ( 0x51 == ((const U8*)s)[1] ) ? \
992 ( ( 0x73 == ((const U8*)s)[2] ) ? 3 : 0 ) \
993 : ( ( 0x52 == ((const U8*)s)[1] ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
994 : ( 0xBC == ((const U8*)s)[0] ) ? is_QUOTEMETA_high_part0(s) : is_QUOTEMETA_high_part1(s) )
997 MULTI_CHAR_FOLD: multi-char strings that are folded to by a single character
999 ®charclass_multi_char_folds::multi_char_folds('u', 'a')
1001 /*** GENERATED CODE ***/
1002 #define is_MULTI_CHAR_FOLD_utf8_safe_part0(s,e) \
1003 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )
1006 /*** GENERATED CODE ***/
1007 #define is_MULTI_CHAR_FOLD_utf8_safe_part1(s,e) \
1008 ( ( 0x8F == ((const U8*)s)[0] ) ? \
1009 ( ( 0x73 == ((const U8*)s)[1] ) ? \
1010 ( ( 0x8F == ((const U8*)s)[2] ) ? \
1011 ( ( 0x73 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1012 : ( ( ((const U8*)s)[2] & 0xBE ) == 's' ) ? 3 : 0 ) \
1014 : ( ( ((const U8*)s)[0] & 0xBF ) == 'j' ) ? \
1015 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x53 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1016 : ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) ? \
1017 ( ( 0x8F == ((const U8*)s)[1] ) ? \
1018 ( ( 0x73 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1019 : ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ? 2 : 0 ) \
1020 : ( ( ((const U8*)s)[0] & 0xBF ) == 't' ) ? \
1021 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x49 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1022 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ?\
1023 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x51 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1024 : ( 0xAB == ((const U8*)s)[0] ) ? \
1025 ( ( ( 0x70 == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xBF ) == 'n' ) ) ? 3 : 0 )\
1026 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1027 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? \
1028 ( ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1029 : ( 0x58 == ((const U8*)s)[1] || 0x66 == ((const U8*)s)[1] ) ? \
1030 ( ( 0xB1 == ((const U8*)s)[2] ) ? \
1031 ( ( 0x43 == ((const U8*)s)[3] ) ? \
1032 ( ( ( 0xB4 == ((const U8*)s)[4] ) && ( 0x68 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
1034 : ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1035 : ( 0x68 == ((const U8*)s)[1] ) ? \
1036 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1037 ( ( 0x49 == ((const U8*)s)[3] ) ? \
1038 ( ( 0xAF == ((const U8*)s)[4] ) ? \
1039 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 0 )\
1040 : ( ( 0xB1 == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1042 : ( ( 0xB1 == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1044 : ( 0xB5 == ((const U8*)s)[0] ) ? \
1045 ( ( 0x42 == ((const U8*)s)[1] ) ? \
1046 ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x62 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1047 : ( 0x46 == ((const U8*)s)[1] ) ? \
1048 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1049 ( ( 0x49 == ((const U8*)s)[3] ) ? \
1050 ( ( 0xAF == ((const U8*)s)[4] ) ? \
1051 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 0 )\
1052 : ( ( 0xB1 == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1053 : ( 0x62 == ((const U8*)s)[3] ) ? \
1054 ( ( 0xAF == ((const U8*)s)[4] ) ? \
1055 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 4 )\
1056 : ( ( 0xB1 == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
1058 : ( ( 0xB1 == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1059 : ( 0x4A == ((const U8*)s)[1] ) ? \
1060 ( ( 0xB1 == ((const U8*)s)[2] ) ? \
1061 ( ( 0x43 == ((const U8*)s)[3] ) ? \
1062 ( ( ( 0xB4 == ((const U8*)s)[4] ) && ( 0x68 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
1064 : ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1065 : ( ( ( 0x55 == ((const U8*)s)[1] ) && ( 0xB4 == ((const U8*)s)[2] ) ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1066 : ( 0xB8 == ((const U8*)s)[0] ) ? \
1067 ( ( 0x52 == ((const U8*)s)[1] ) ? \
1068 ( ( 0x46 == ((const U8*)s)[2] ) ? \
1069 ( ( ( ( 0xB8 == ((const U8*)s)[3] ) && ( 0x53 == ((const U8*)s)[4] ) ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1070 : ( 0x63 == ((const U8*)s)[2] ) ? \
1071 ( ( ( ( 0xB8 == ((const U8*)s)[3] ) && ( 0x52 == ((const U8*)s)[4] ) ) && ( 0x46 == ((const U8*)s)[5] || 0x52 == ((const U8*)s)[5] || 0x54 == ((const U8*)s)[5] || 0x65 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1072 : ( ( ( ( 0x72 == ((const U8*)s)[2] ) && ( 0xB8 == ((const U8*)s)[3] ) ) && ( 0x52 == ((const U8*)s)[4] ) ) && ( 0x65 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1074 : ( 0xBF == ((const U8*)s)[0] ) ? \
1075 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x67, 0x68) ) ? \
1076 ( ( ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) ) && ( 0xB4 == ((const U8*)s)[3] ) ) && ( 0x68 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
1077 : ( ( ( ( 0x6A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) || 0x57 == ((const U8*)s)[2] || 0x63 == ((const U8*)s)[2] || 0x70 == ((const U8*)s)[2] ) ) && ( 0xB4 == ((const U8*)s)[3] ) ) && ( 0x68 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
1081 /*** GENERATED CODE ***/
1082 #define is_MULTI_CHAR_FOLD_utf8_safe_part2(s,e) \
1083 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'a' ) ? \
1084 ( ( ( 0xAB == ((const U8*)s)[1] ) && ( 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1085 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1086 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1087 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1088 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1089 : ( ( ((const U8*)s)[0] & 0xBF ) == 'h' ) ? \
1090 ( ( ( 0xB0 == ((const U8*)s)[1] ) && ( 0x58 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1091 : ( ( ((const U8*)s)[0] & 0xBF ) == 'i' ) ? \
1092 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1093 : ( 0x8F == ((const U8*)s)[0] ) ? \
1094 ( ( 0x73 == ((const U8*)s)[1] ) ? \
1095 ( ( 0x8F == ((const U8*)s)[2] ) ? \
1096 ( ( 0x73 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1097 : ( ( ((const U8*)s)[2] & 0xBE ) == 's' ) ? 3 : 0 ) \
1099 : ( ( ((const U8*)s)[0] & 0xBF ) == 'j' ) ? \
1100 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x53 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1101 : ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) ? \
1102 ( ( 0x8F == ((const U8*)s)[1] ) ? \
1103 ( ( 0x73 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1104 : ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ? 2 : 0 ) \
1105 : ( ( ((const U8*)s)[0] & 0xBF ) == 't' ) ? \
1106 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x49 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1107 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ?\
1108 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x51 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1109 : ( 0xAB == ((const U8*)s)[0] ) ? \
1110 ( ( ( 0x70 == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xBF ) == 'n' ) ) ? 3 : 0 )\
1111 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1112 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? \
1113 ( ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1114 : ( 0x58 == ((const U8*)s)[1] || 0x66 == ((const U8*)s)[1] ) ? \
1115 ( ( 0xB1 == ((const U8*)s)[2] ) ? \
1116 ( ( 0x43 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1117 : ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1118 : ( ( ( 0x68 == ((const U8*)s)[1] ) && ( 0xB1 == ((const U8*)s)[2] ) ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1119 : ( 0xB5 == ((const U8*)s)[0] ) ? \
1120 ( ( 0x42 == ((const U8*)s)[1] ) ? \
1121 ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x62 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1122 : ( 0x46 == ((const U8*)s)[1] ) ? \
1123 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1124 ( ( 0x62 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1125 : ( ( 0xB1 == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1126 : ( 0x4A == ((const U8*)s)[1] ) ? \
1127 ( ( 0xB1 == ((const U8*)s)[2] ) ? \
1128 ( ( 0x43 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1129 : ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1130 : ( ( ( 0x55 == ((const U8*)s)[1] ) && ( 0xB4 == ((const U8*)s)[2] ) ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1131 : ( 0xBF == ((const U8*)s)[0] ) ? \
1132 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x67, 0x68) ) ? \
1133 ( ( ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) ) && ( 0xB4 == ((const U8*)s)[3] ) ) && ( 0x68 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
1134 : ( ( ( ( 0x6A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) || 0x57 == ((const U8*)s)[2] || 0x63 == ((const U8*)s)[2] || 0x70 == ((const U8*)s)[2] ) ) && ( 0xB4 == ((const U8*)s)[3] ) ) && ( 0x68 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
1138 /*** GENERATED CODE ***/
1139 #define is_MULTI_CHAR_FOLD_utf8_safe_part3(s,e) \
1141 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'a' ) ? \
1142 ( ( ( 0xAB == ((const U8*)s)[1] ) && ( 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1143 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1144 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1145 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1146 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1147 : ( ( ((const U8*)s)[0] & 0xBF ) == 'h' ) ? \
1148 ( ( ( 0xB0 == ((const U8*)s)[1] ) && ( 0x58 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1149 : ( ( ((const U8*)s)[0] & 0xBF ) == 'i' ) ? \
1150 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1151 : ( 0x8F == ((const U8*)s)[0] ) ? \
1152 ( ( 0x73 == ((const U8*)s)[1] ) ? \
1153 ( ( 0x8F == ((const U8*)s)[2] ) ? \
1154 ( ( 0x73 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1155 : ( ( ((const U8*)s)[2] & 0xBE ) == 's' ) ? 3 : 0 ) \
1157 : ( ( ((const U8*)s)[0] & 0xBF ) == 'j' ) ? \
1158 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x53 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1159 : ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) ? \
1160 ( ( 0x8F == ((const U8*)s)[1] ) ? \
1161 ( ( 0x73 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1162 : ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ? 2 : 0 ) \
1163 : ( ( ((const U8*)s)[0] & 0xBF ) == 't' ) ? \
1164 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x49 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1165 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ?\
1166 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x51 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1167 : ( 0xAB == ((const U8*)s)[0] ) ? \
1168 ( ( ( 0x70 == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xBF ) == 'n' ) ) ? 3 : 0 )\
1169 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1170 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? \
1171 ( ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1172 : ( 0x58 == ((const U8*)s)[1] || 0x66 == ((const U8*)s)[1] ) ? \
1173 ( ( 0xB1 == ((const U8*)s)[2] ) ? \
1174 ( ( 0x43 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1175 : ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1176 : ( ( ( 0x68 == ((const U8*)s)[1] ) && ( 0xB1 == ((const U8*)s)[2] ) ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1177 : ( 0xB5 == ((const U8*)s)[0] ) ? \
1178 ( ( 0x42 == ((const U8*)s)[1] ) ? \
1179 ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x62 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1180 : ( 0x46 == ((const U8*)s)[1] ) ? \
1181 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1182 ( ( 0x62 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1183 : ( ( 0xB1 == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1184 : ( 0x4A == ((const U8*)s)[1] ) ? \
1185 ( ( 0xB1 == ((const U8*)s)[2] ) ? \
1186 ( ( 0x43 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1187 : ( ( 0xB4 == ((const U8*)s)[2] ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1188 : ( ( ( 0x55 == ((const U8*)s)[1] ) && ( 0xB4 == ((const U8*)s)[2] ) ) && ( 0x68 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1191 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'a' ) ? \
1192 ( ( ( 0xAB == ((const U8*)s)[1] ) && ( 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1193 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1194 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1195 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1196 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1197 : ( ( ((const U8*)s)[0] & 0xBF ) == 'h' ) ? \
1198 ( ( ( 0xB0 == ((const U8*)s)[1] ) && ( 0x58 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1199 : ( ( ((const U8*)s)[0] & 0xBF ) == 'i' ) ? \
1200 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1201 : ( 0x8F == ((const U8*)s)[0] ) ? \
1202 ( ( ( 0x73 == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xBE ) == 's' ) ) ? 3 : 0 )\
1203 : ( ( ((const U8*)s)[0] & 0xBF ) == 'j' ) ? \
1204 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x53 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1205 : ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) ? \
1206 ( ( 0x8F == ((const U8*)s)[1] ) ? \
1207 ( ( 0x73 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1208 : ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ? 2 : 0 ) \
1209 : ( ( ((const U8*)s)[0] & 0xBF ) == 't' ) ? \
1210 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x49 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1211 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ?\
1212 ( ( ( 0xAF == ((const U8*)s)[1] ) && ( 0x51 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1213 : ( ( ( 0xAB == ((const U8*)s)[0] ) && ( 0x70 == ((const U8*)s)[1] ) ) && ( ( ((const U8*)s)[2] & 0xBF ) == 'n' ) ) ? 3 : 0 )\
1215 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1216 ( ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1217 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) && ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ) ? 2 : 0 )\
1221 /*** GENERATED CODE ***/
1222 #define is_MULTI_CHAR_FOLD_utf8_safe(s,e) \
1224 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'a' ) ? \
1225 ( ( ( 0xAB == ((const U8*)s)[1] ) && ( 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1226 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1227 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1228 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1229 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1230 : ( ( ((const U8*)s)[0] & 0xBF ) == 'h' ) ? \
1231 ( ( ( 0xB0 == ((const U8*)s)[1] ) && ( 0x58 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1232 : ( ( ((const U8*)s)[0] & 0xBF ) == 'i' ) ? is_MULTI_CHAR_FOLD_utf8_safe_part0(s,e) : is_MULTI_CHAR_FOLD_utf8_safe_part1(s,e) )\
1233 : ((e)-(s) > 4) ? is_MULTI_CHAR_FOLD_utf8_safe_part2(s,e) : is_MULTI_CHAR_FOLD_utf8_safe_part3(s,e) )
1236 MULTI_CHAR_FOLD: multi-char strings that are folded to by a single character
1238 ®charclass_multi_char_folds::multi_char_folds('l', 'a')
1240 /*** GENERATED CODE ***/
1241 #define is_MULTI_CHAR_FOLD_latin1_safe(s,e) \
1243 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1244 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1245 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1246 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1247 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) && ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ) ? 2 : 0 )\
1249 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1250 ( ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1251 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) && ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ) ? 2 : 0 )\
1255 THREE_CHAR_FOLD: A three-character multi-char fold
1257 ®charclass_multi_char_folds::multi_char_folds('u', '3')
1259 /*** GENERATED CODE ***/
1260 #define is_THREE_CHAR_FOLD_utf8_safe(s,e) \
1262 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1263 ( ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) && ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ) ? 3 : 0 )\
1264 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1265 ( ( 0x58 == ((const U8*)s)[1] || 0x66 == ((const U8*)s)[1] ) ? \
1266 ( ( ( ( ( 0xB1 == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) && ( 0xB4 == ((const U8*)s)[4] ) ) && ( 0x68 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1267 : ( ( ( 0x68 == ((const U8*)s)[1] ) && ( 0xAF == ((const U8*)s)[2] ) ) && ( 0x49 == ((const U8*)s)[3] ) ) ? ( ( 0xAF == ((const U8*)s)[4] ) ?\
1268 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 0 )\
1269 : ( ( 0xB1 == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 ) : 0 )\
1270 : ( 0xB5 == ((const U8*)s)[0] ) ? \
1271 ( ( 0x46 == ((const U8*)s)[1] ) ? \
1272 ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x49 == ((const U8*)s)[3] || 0x62 == ((const U8*)s)[3] ) ) ? ( ( 0xAF == ((const U8*)s)[4] ) ?\
1273 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 0 )\
1274 : ( ( 0xB1 == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 ) : 0 )\
1275 : ( ( ( ( ( 0x4A == ((const U8*)s)[1] ) && ( 0xB1 == ((const U8*)s)[2] ) ) && ( 0x43 == ((const U8*)s)[3] ) ) && ( 0xB4 == ((const U8*)s)[4] ) ) && ( 0x68 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1277 : ( ( ( ((e)-(s) > 2) && ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ) && ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ) && ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ) ? 3 : 0 )
1280 THREE_CHAR_FOLD: A three-character multi-char fold
1282 ®charclass_multi_char_folds::multi_char_folds('l', '3')
1284 /*** GENERATED CODE ***/
1285 #define is_THREE_CHAR_FOLD_latin1_safe(s,e) \
1286 ( ( ( ( ( ((e) - (s)) >= 3 ) && ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ) && ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ) && ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ) ? 3 : 0 )
1289 THREE_CHAR_FOLD_HEAD: The first two of three-character multi-char folds
1291 ®charclass_multi_char_folds::multi_char_folds('u', 'h')
1293 /*** GENERATED CODE ***/
1294 #define is_THREE_CHAR_FOLD_HEAD_utf8_safe(s,e) \
1296 ( ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ? 1\
1297 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1298 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? 2 : 1 ) \
1299 : ( 0x8F == ((const U8*)s)[0] ) ? \
1300 ( ( 0x73 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1301 : ( 0xAB == ((const U8*)s)[0] ) ? \
1302 ( ( 0x70 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1303 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1304 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? 2 \
1305 : ( 0x58 == ((const U8*)s)[1] || 0x66 == ((const U8*)s)[1] ) ? \
1306 ( ( ( 0xB1 == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
1307 : ( 0x68 == ((const U8*)s)[1] ) ? \
1308 ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x49 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
1310 : ( 0xB5 == ((const U8*)s)[0] ) ? \
1311 ( ( 0x42 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? 2 \
1312 : ( 0x46 == ((const U8*)s)[1] ) ? \
1313 ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x49 == ((const U8*)s)[3] || 0x62 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
1314 : ( 0x4A == ((const U8*)s)[1] ) ? \
1315 ( ( ( 0xB1 == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
1317 : ( 0xB8 == ((const U8*)s)[0] ) ? \
1318 ( ( ( 0x52 == ((const U8*)s)[1] ) && ( 0x46 == ((const U8*)s)[2] || 0x63 == ((const U8*)s)[2] || 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1319 : ( 0xBF == ((const U8*)s)[0] ) ? \
1320 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x67, 0x68) ) ? \
1321 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) ) ? 3 : 0 )\
1322 : ( ( 0x6A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) || 0x57 == ((const U8*)s)[2] || 0x63 == ((const U8*)s)[2] || 0x70 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1325 ( ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ? 1\
1326 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1327 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? 2 : 1 ) \
1328 : ( 0x8F == ((const U8*)s)[0] ) ? \
1329 ( ( 0x73 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1330 : ( 0xAB == ((const U8*)s)[0] ) ? \
1331 ( ( 0x70 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1332 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1333 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] || 0x58 == ((const U8*)s)[1] || 0x66 == ((const U8*)s)[1] || 0x68 == ((const U8*)s)[1] ) ? 2 : 0 )\
1334 : ( 0xB5 == ((const U8*)s)[0] ) ? \
1335 ( ( ( ( ((const U8*)s)[1] & 0xFB ) == 0x42 ) || ((const U8*)s)[1] == 0x4A || ((const U8*)s)[1] == 0x55 ) ? 2 : 0 )\
1336 : ( 0xB8 == ((const U8*)s)[0] ) ? \
1337 ( ( ( 0x52 == ((const U8*)s)[1] ) && ( 0x46 == ((const U8*)s)[2] || 0x63 == ((const U8*)s)[2] || 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1338 : ( 0xBF == ((const U8*)s)[0] ) ? \
1339 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x67, 0x68) ) ? \
1340 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) ) ? 3 : 0 )\
1341 : ( ( 0x6A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) || 0x57 == ((const U8*)s)[2] || 0x63 == ((const U8*)s)[2] || 0x70 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1344 ( ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ? 1\
1345 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1346 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? 2 : 1 ) \
1347 : ( 0x8F == ((const U8*)s)[0] ) ? \
1348 ( ( 0x73 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1349 : ( 0xAB == ((const U8*)s)[0] ) ? \
1350 ( ( 0x70 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1351 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1352 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] || 0x58 == ((const U8*)s)[1] || 0x66 == ((const U8*)s)[1] || 0x68 == ((const U8*)s)[1] ) ? 2 : 0 )\
1353 : ( ( 0xB5 == ((const U8*)s)[0] ) && ( ( ( ((const U8*)s)[1] & 0xFB ) == 0x42 ) || ((const U8*)s)[1] == 0x4A || ((const U8*)s)[1] == 0x55 ) ) ? 2 : 0 )\
1355 ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0x9F ) == 'f' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) )\
1359 THREE_CHAR_FOLD_HEAD: The first two of three-character multi-char folds
1361 ®charclass_multi_char_folds::multi_char_folds('l', 'h')
1363 /*** GENERATED CODE ***/
1364 #define is_THREE_CHAR_FOLD_HEAD_latin1_safe(s,e) \
1366 ( ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ? 1\
1367 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1368 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? 2 : 1 ) \
1371 ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0x9F ) == 'f' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) )\
1375 FOLDS_TO_MULTI: characters that fold to multi-char strings
1377 \p{_Perl_Folds_To_Multi_Char}
1379 /*** GENERATED CODE ***/
1380 #define is_FOLDS_TO_MULTI_utf8(s) \
1381 ( ( 0x8A == ((const U8*)s)[0] ) ? \
1382 ( ( 0x73 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1383 : ( 0x8D == ((const U8*)s)[0] || 0x9C == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 0xB3, 0xB4) ) ?\
1384 ( ( 0x57 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1385 : ( 0x8E == ((const U8*)s)[0] ) ? \
1386 ( ( 0x4A == ((const U8*)s)[1] ) ? 2 : 0 ) \
1387 : ( 0xB8 == ((const U8*)s)[0] ) ? \
1388 ( ( ( 0x53 == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1389 : ( 0xBF == ((const U8*)s)[0] ) ? \
1390 ( ( 0x63 == ((const U8*)s)[1] ) ? \
1391 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x65, 0x69) || 0x72 == ((const U8*)s)[2] ) ? 3 : 0 )\
1392 : ( 0x69 == ((const U8*)s)[1] ) ? \
1393 ( ( 0x57 == ((const U8*)s)[2] || 0x59 == ((const U8*)s)[2] || 0x63 == ((const U8*)s)[2] || 0x65 == ((const U8*)s)[2] ) ? 3 : 0 )\
1394 : ( 0x70 == ((const U8*)s)[1] ) ? \
1395 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x73) ) ? 3 : 0 )\
1396 : ( 0x71 == ((const U8*)s)[1] ) ? \
1397 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x56) || 0x59 == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x63) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x65, 0x66) || 0x70 == ((const U8*)s)[2] ) ? 3 : 0 )\
1398 : ( 0x72 == ((const U8*)s)[1] ) ? \
1399 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x43, 0x45) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x47, 0x48) || 0x53 == ((const U8*)s)[2] || 0x59 == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x65, 0x66) ) ? 3 : 0 )\
1400 : ( ( 0x73 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x43, 0x45) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x47, 0x48) || 0x59 == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x63) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x65, 0x66) || 0x70 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1401 : ( ( ( ( 0xDD == ((const U8*)s)[0] ) && ( 0x72 == ((const U8*)s)[1] ) ) && ( 0x67 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x47) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x66) ) ) ? 4 : 0 )
1404 PROBLEMATIC_LOCALE_FOLD: characters whose fold is problematic under locale
1406 \p{_Perl_Problematic_Locale_Folds}
1408 /*** GENERATED CODE ***/
1409 #define is_PROBLEMATIC_LOCALE_FOLD_utf8(s) \
1410 ( ( ( ((const U8*)s)[0] <= ' ' ) || inRANGE_helper_(U8, ((const U8*)s)[0], '.', '&') || inRANGE_helper_(U8, ((const U8*)s)[0], '!', '/') || inRANGE_helper_(U8, ((const U8*)s)[0], ',', '?') || inRANGE_helper_(U8, ((const U8*)s)[0], '`', '"') || inRANGE_helper_(U8, ((const U8*)s)[0], 'a', 'i') || inRANGE_helper_(U8, ((const U8*)s)[0], 'j', 'r') || inRANGE_helper_(U8, ((const U8*)s)[0], '~', 'z') || '[' == ((const U8*)s)[0] || ']' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], '{', 'I') || inRANGE_helper_(U8, ((const U8*)s)[0], '}', 'R') || '\\' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 'S', 'Z') || inRANGE_helper_(U8, ((const U8*)s)[0], '0', '9') || 0xFF == ((const U8*)s)[0] ) ? 1\
1411 : ( 0x80 == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 0x8A, 0x8B) ) ?\
1412 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x73) ) ? 2 : 0 )\
1413 : ( 0x8D == ((const U8*)s)[0] ) ? \
1414 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x57, 0x58) ) ? 2 : 0 ) \
1415 : ( 0x8E == ((const U8*)s)[0] ) ? \
1416 ( ( 0x4A == ((const U8*)s)[1] ) ? 2 : 0 ) \
1417 : ( 0x8F == ((const U8*)s)[0] ) ? \
1418 ( ( 0x67 == ((const U8*)s)[1] || 0x73 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1419 : ( 0x9C == ((const U8*)s)[0] ) ? \
1420 ( ( 0x57 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1421 : ( 0xAF == ((const U8*)s)[0] ) ? \
1422 ( ( 0x48 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1423 : ( inRANGE_helper_(U8, ((const U8*)s)[0], 0xB3, 0xB4) ) ? \
1424 ( ( 0x70 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1425 : ( 0xBF == ((const U8*)s)[0] ) ? \
1426 ( ( ( 0x63 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x65, 0x69) || 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1427 : ( 0xCA == ((const U8*)s)[0] ) ? \
1428 ( ( ( 0x4A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x52) ) ) ? 3 : 0 )\
1429 : ( ( ( ( 0xDD == ((const U8*)s)[0] ) && ( 0x72 == ((const U8*)s)[1] ) ) && ( 0x67 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x47) ) ) ? 4 : 0 )
1431 /*** GENERATED CODE ***/
1432 #define is_PROBLEMATIC_LOCALE_FOLD_cp(cp) \
1433 ( cp <= 0xFF || ( 0xFF < cp && \
1434 ( inRANGE_helper_(UV, cp, 0x130, 0x131) || ( 0x131 < cp && \
1435 ( 0x149 == cp || ( 0x149 < cp && \
1436 ( 0x178 == cp || ( 0x178 < cp && \
1437 ( 0x17F == cp || ( 0x17F < cp && \
1438 ( 0x1F0 == cp || ( 0x1F0 < cp && \
1439 ( 0x307 == cp || ( 0x307 < cp && \
1440 ( 0x39C == cp || ( 0x39C < cp && \
1441 ( 0x3BC == cp || ( 0x3BC < cp && \
1442 ( inRANGE_helper_(UV, cp, 0x1E96, 0x1E9A) || ( 0x1E9A < cp && \
1443 ( 0x1E9E == cp || ( 0x1E9E < cp && \
1444 ( inRANGE_helper_(UV, cp, 0x212A, 0x212B) || inRANGE_helper_(UV, cp, 0xFB00, 0xFB06) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
1447 PROBLEMATIC_LOCALE_FOLDEDS_START: The first folded character of folds which are problematic under locale
1449 \p{_Perl_Problematic_Locale_Foldeds_Start}
1451 /*** GENERATED CODE ***/
1452 #define is_PROBLEMATIC_LOCALE_FOLDEDS_START_utf8(s) \
1453 ( ( ( ((const U8*)s)[0] <= ' ' ) || inRANGE_helper_(U8, ((const U8*)s)[0], '.', '&') || inRANGE_helper_(U8, ((const U8*)s)[0], '!', '/') || inRANGE_helper_(U8, ((const U8*)s)[0], ',', '?') || inRANGE_helper_(U8, ((const U8*)s)[0], '`', '"') || inRANGE_helper_(U8, ((const U8*)s)[0], 'a', 'i') || inRANGE_helper_(U8, ((const U8*)s)[0], 'j', 'r') || inRANGE_helper_(U8, ((const U8*)s)[0], '~', 'z') || '[' == ((const U8*)s)[0] || ']' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], '{', 'I') || inRANGE_helper_(U8, ((const U8*)s)[0], '}', 'R') || '\\' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 'S', 'Z') || inRANGE_helper_(U8, ((const U8*)s)[0], '0', '9') || 0xFF == ((const U8*)s)[0] ) ? 1\
1454 : ( 0x80 == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 0x8A, 0x8B) ) ?\
1455 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x51, 0x59) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x73) ) ? 2 : 0 )\
1456 : ( 0x8D == ((const U8*)s)[0] ) ? \
1457 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x57, 0x58) ) ? 2 : 0 ) \
1458 : ( 0x8E == ((const U8*)s)[0] ) ? \
1459 ( ( 0x4A == ((const U8*)s)[1] ) ? 2 : 0 ) \
1460 : ( 0x8F == ((const U8*)s)[0] ) ? \
1461 ( ( 0x67 == ((const U8*)s)[1] || 0x73 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1462 : ( 0x9C == ((const U8*)s)[0] ) ? \
1463 ( ( 0x57 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1464 : ( 0xAB == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 0xB3, 0xB4) ) ?\
1465 ( ( 0x70 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1466 : ( 0xBF == ((const U8*)s)[0] ) ? \
1467 ( ( ( 0x63 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x65, 0x69) || 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1468 : ( 0xCA == ((const U8*)s)[0] ) ? \
1469 ( ( ( 0x4A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x52) ) ) ? 3 : 0 )\
1470 : ( ( ( ( 0xDD == ((const U8*)s)[0] ) && ( 0x72 == ((const U8*)s)[1] ) ) && ( 0x67 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x47) ) ) ? 4 : 0 )
1472 /*** GENERATED CODE ***/
1473 #define is_PROBLEMATIC_LOCALE_FOLDEDS_START_cp(cp) \
1474 ( cp <= 0xFF || ( 0xFF < cp && \
1475 ( inRANGE_helper_(UV, cp, 0x130, 0x131) || ( 0x131 < cp && \
1476 ( 0x149 == cp || ( 0x149 < cp && \
1477 ( 0x178 == cp || ( 0x178 < cp && \
1478 ( 0x17F == cp || ( 0x17F < cp && \
1479 ( 0x1F0 == cp || ( 0x1F0 < cp && \
1480 ( 0x2BC == cp || ( 0x2BC < cp && \
1481 ( 0x39C == cp || ( 0x39C < cp && \
1482 ( 0x3BC == cp || ( 0x3BC < cp && \
1483 ( inRANGE_helper_(UV, cp, 0x1E96, 0x1E9A) || ( 0x1E9A < cp && \
1484 ( 0x1E9E == cp || ( 0x1E9E < cp && \
1485 ( inRANGE_helper_(UV, cp, 0x212A, 0x212B) || inRANGE_helper_(UV, cp, 0xFB00, 0xFB06) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
1488 PATWS: pattern white space
1492 /*** GENERATED CODE ***/
1493 #define is_PATWS_safe(s,e,is_utf8) \
1494 ( ( LIKELY((e) > (s)) ) ? \
1495 ( ( '\t' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\r') || '\n' == ((const U8*)s)[0] || 0x25 == ((const U8*)s)[0] || ' ' == ((const U8*)s)[0] ) ? 1\
1496 : ( ( is_utf8 && LIKELY(((e) - (s)) >= UTF8SKIP(s)) ) && ( 0xCA == ((const U8*)s)[0] ) ) ? ( ( 0x41 == ((const U8*)s)[1] ) ?\
1497 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x55, 0x56) ) ? 3 : 0 )\
1498 : ( ( 0x42 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) ) ) ? 3 : 0 ) : 0 )\
1501 #endif /* EBCDIC 1047 */
1503 #if 'A' == 193 /* EBCDIC 037 */ \
1504 && '\\' == 224 && '[' == 186 && ']' == 187 && '{' == 192 && '}' == 208 \
1505 && '^' == 176 && '~' == 161 && '!' == 90 && '#' == 123 && '|' == 79 \
1506 && '$' == 91 && '@' == 124 && '`' == 121 && '\n' == 37
1508 LNBREAK: Line Break: \R
1510 "\x0D\x0A" # CRLF - Network (Windows) line ending
1513 /*** GENERATED CODE ***/
1514 #define is_LNBREAK_safe(s,e,is_utf8) \
1516 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] ) ? 1\
1517 : ( '\r' == ((const U8*)s)[0] ) ? \
1518 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
1519 : ( ( ( ( is_utf8 ) && ( 0xCA == ((const U8*)s)[0] ) ) && ( 0x42 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) ) ) ? 3 : 0 )\
1521 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] ) ? 1\
1522 : ( '\r' == ((const U8*)s)[0] ) ? \
1523 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
1526 ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\r') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] )\
1529 /*** GENERATED CODE ***/
1530 #define is_LNBREAK_utf8_safe(s,e) \
1532 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] ) ? 1\
1533 : ( '\r' == ((const U8*)s)[0] ) ? \
1534 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
1535 : ( ( ( 0xCA == ((const U8*)s)[0] ) && ( 0x42 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) ) ) ? 3 : 0 )\
1537 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] ) ? 1\
1538 : ( '\r' == ((const U8*)s)[0] ) ? \
1539 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
1542 ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\r') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] )\
1545 /*** GENERATED CODE ***/
1546 #define is_LNBREAK_latin1_safe(s,e) \
1548 ( ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\f') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] ) ? 1\
1549 : ( '\r' == ((const U8*)s)[0] ) ? \
1550 ( ( '\n' == ((const U8*)s)[1] ) ? 2 : 1 ) \
1553 ( inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\r') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] )\
1557 HORIZWS: Horizontal Whitespace: \h \H
1561 /*** GENERATED CODE ***/
1562 #define is_HORIZWS_high(s) \
1563 ( ( 0xBD == ((const U8*)s)[0] ) ? \
1564 ( ( ( 0x62 == ((const U8*)s)[1] ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1565 : ( 0xCA == ((const U8*)s)[0] ) ? \
1566 ( ( 0x41 == ((const U8*)s)[1] ) ? \
1567 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || 0x51 == ((const U8*)s)[2] ) ? 3 : 0 )\
1568 : ( 0x42 == ((const U8*)s)[1] ) ? \
1569 ( ( 0x56 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1570 : ( ( 0x43 == ((const U8*)s)[1] ) && ( 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1571 : ( ( ( 0xCE == ((const U8*)s)[0] ) && ( 0x41 == ((const U8*)s)[1] ) ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )
1573 /*** GENERATED CODE ***/
1574 #define is_HORIZWS_cp_high(cp) \
1575 ( 0x1680 == cp || ( 0x1680 < cp && \
1576 ( inRANGE_helper_(UV, cp, 0x2000, 0x200A) || ( 0x200A < cp && \
1577 ( 0x202F == cp || ( 0x202F < cp && \
1578 ( 0x205F == cp || 0x3000 == cp ) ) ) ) ) ) )
1581 VERTWS: Vertical Whitespace: \v \V
1585 /*** GENERATED CODE ***/
1586 #define is_VERTWS_high(s) \
1587 ( ( ( ( 0xCA == ((const U8*)s)[0] ) && ( 0x42 == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) ) ) ? 3 : 0 )
1589 /*** GENERATED CODE ***/
1590 #define is_VERTWS_cp_high(cp) \
1591 ( inRANGE_helper_(UV, cp, 0x2028, 0x2029) )
1594 XDIGIT: Hexadecimal digits
1598 /*** GENERATED CODE ***/
1599 #define is_XDIGIT_high(s) \
1600 ( ( ( 0xDD == ((const U8*)s)[0] ) && ( 0x72 == ((const U8*)s)[1] ) ) ? ( ( 0x66 == ((const U8*)s)[2] ) ?\
1601 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x57, 0x59) || 0x5F == ((const U8*)s)[3] || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x67) ) ? 4 : 0 )\
1602 : ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x67, 0x68) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x42, 0x47) ) ) ? 4 : 0 ) : 0 )
1604 /*** GENERATED CODE ***/
1605 #define is_XDIGIT_cp_high(cp) \
1606 ( inRANGE_helper_(UV, cp, 0xFF10, 0xFF19) || ( 0xFF19 < cp && \
1607 ( inRANGE_helper_(UV, cp, 0xFF21, 0xFF26) || inRANGE_helper_(UV, cp, 0xFF41, 0xFF46) ) ) )
1610 XPERLSPACE: \p{XPerlSpace}
1614 /*** GENERATED CODE ***/
1615 #define is_XPERLSPACE_high(s) \
1616 ( ( 0xBD == ((const U8*)s)[0] ) ? \
1617 ( ( ( 0x62 == ((const U8*)s)[1] ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1618 : ( 0xCA == ((const U8*)s)[0] ) ? \
1619 ( ( 0x41 == ((const U8*)s)[1] ) ? \
1620 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || 0x51 == ((const U8*)s)[2] ) ? 3 : 0 )\
1621 : ( 0x42 == ((const U8*)s)[1] ) ? \
1622 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) || 0x56 == ((const U8*)s)[2] ) ? 3 : 0 )\
1623 : ( ( 0x43 == ((const U8*)s)[1] ) && ( 0x72 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1624 : ( ( ( 0xCE == ((const U8*)s)[0] ) && ( 0x41 == ((const U8*)s)[1] ) ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )
1626 /*** GENERATED CODE ***/
1627 #define is_XPERLSPACE_cp_high(cp) \
1628 ( 0x1680 == cp || ( 0x1680 < cp && \
1629 ( inRANGE_helper_(UV, cp, 0x2000, 0x200A) || ( 0x200A < cp && \
1630 ( inRANGE_helper_(UV, cp, 0x2028, 0x2029) || ( 0x2029 < cp && \
1631 ( 0x202F == cp || ( 0x202F < cp && \
1632 ( 0x205F == cp || 0x3000 == cp ) ) ) ) ) ) ) ) )
1635 NONCHAR: Non character code points
1639 /*** GENERATED CODE ***/
1640 #define is_NONCHAR_utf8_safe(s,e) \
1641 ( ( ( LIKELY((e) > (s)) ) && ( LIKELY(((e) - (s)) >= UTF8SKIP(s)) ) ) ? ( ( 0xDD == ((const U8*)s)[0] ) ?\
1642 ( ( 0x72 == ((const U8*)s)[1] ) ? \
1643 ( ( 0x55 == ((const U8*)s)[2] ) ? \
1644 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x57, 0x59) || 0x5F == ((const U8*)s)[3] || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x70, 0x72) ) ? 4 : 0 )\
1645 : ( 0x56 == ((const U8*)s)[2] ) ? \
1646 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x51, 0x56) ) ? 4 : 0 )\
1647 : ( ( 0x72 == ((const U8*)s)[2] ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x71, 0x72) ) ) ? 4 : 0 )\
1649 : ( 0xDF == ((const U8*)s)[0] || 0xEA == ((const U8*)s)[0] || 0xEC == ((const U8*)s)[0] ) ?\
1650 ( ( ( ( 0x72 == ((const U8*)s)[1] ) && ( 0x72 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x71, 0x72) ) ) ? 4 : 0 )\
1651 : ( 0xED == ((const U8*)s)[0] ) ? \
1652 ( ( ( ( ( ((const U8*)s)[1] == 0x4A || ((const U8*)s)[1] == 0x52 || ( ( ((const U8*)s)[1] & 0xFD ) == 0x54 ) || ((const U8*)s)[1] == 0x58 || ((const U8*)s)[1] == 0x5F || ((const U8*)s)[1] == 0x63 || ( ( ((const U8*)s)[1] & 0xFD ) == 0x65 ) || ((const U8*)s)[1] == 0x69 || ( ( ((const U8*)s)[1] & 0xFD ) == 0x70 ) ) && ( 0x72 == ((const U8*)s)[2] ) ) && ( 0x72 == ((const U8*)s)[3] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[4], 0x71, 0x72) ) ) ? 5 : 0 )\
1653 : ( ( ( ( ( 0xEE == ((const U8*)s)[0] ) && ( 0x42 == ((const U8*)s)[1] ) ) && ( 0x72 == ((const U8*)s)[2] ) ) && ( 0x72 == ((const U8*)s)[3] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[4], 0x71, 0x72) ) ) ? 5 : 0 ) : 0 )
1656 SURROGATE: Surrogate code points
1660 /*** GENERATED CODE ***/
1661 #define is_SURROGATE_utf8_safe(s,e) \
1662 ( ( ( ( ( ( ((e) - (s)) >= 4 ) && ( 0xDD == ((const U8*)s)[0] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x64, 0x65) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x51, 0x59) || 0x5F == ((const U8*)s)[3] || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x70, 0x72) ) ) ? 4 : 0 )
1665 QUOTEMETA: Meta-characters that \Q should quote
1669 /*** GENERATED CODE ***/
1670 #define is_QUOTEMETA_high_part0(s) \
1671 ( ( 0x41 == ((const U8*)s)[1] || inRANGE_helper_(U8, ((const U8*)s)[1], 0x54, 0x59) || 0x5F == ((const U8*)s)[1] || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x72) ) ?\
1672 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ? 3 : 0 )\
1673 : ( 0x42 == ((const U8*)s)[1] ) ? \
1674 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x71) ) ? 3 : 0 )\
1675 : ( 0x43 == ((const U8*)s)[1] ) ? \
1676 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x42, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x63, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ? 3 : 0 )\
1677 : ( 0x44 == ((const U8*)s)[1] ) ? \
1678 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x56) ) ? 3 : 0 )\
1679 : ( ( 0x53 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x57, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ) ? 3 : 0 )
1682 /*** GENERATED CODE ***/
1683 #define is_QUOTEMETA_high_part1(s) \
1684 ( ( 0xCB == ((const U8*)s)[0] ) ? \
1685 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x41, 0x43) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x49, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x51, 0x59) || 0x5F == ((const U8*)s)[1] || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x68) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x72) ) ?\
1686 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ? 3 : 0 )\
1687 : ( 0x69 == ((const U8*)s)[1] ) ? \
1688 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x63) ) ? 3 : 0 )\
1689 : ( ( 0x6A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ) ? 3 : 0 )\
1690 : ( 0xCC == ((const U8*)s)[0] ) ? \
1691 ( ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x51, 0x59) || 0x5F == ((const U8*)s)[1] || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x72) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ) ? 3 : 0 )\
1692 : ( 0xCD == ((const U8*)s)[0] ) ? \
1693 ( ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x57, 0x59) || 0x5F == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ) ? 3 : 0 )\
1694 : ( 0xCE == ((const U8*)s)[0] ) ? \
1695 ( ( 0x41 == ((const U8*)s)[1] ) ? \
1696 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x44) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ? 3 : 0 )\
1697 : ( 0x42 == ((const U8*)s)[1] ) ? \
1698 ( ( 0x41 == ((const U8*)s)[2] || 0x57 == ((const U8*)s)[2] ) ? 3 : 0 )\
1699 : ( ( 0x52 == ((const U8*)s)[1] ) && ( 0x45 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1700 : ( 0xDD == ((const U8*)s)[0] ) ? \
1701 ( ( 0x72 == ((const U8*)s)[1] ) ? \
1702 ( ( 0x4A == ((const U8*)s)[2] ) ? \
1703 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x71, 0x72) ) ? 4 : 0 )\
1704 : ( 0x57 == ((const U8*)s)[2] ) ? \
1705 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x51, 0x56) ) ? 4 : 0 )\
1706 : ( 0x59 == ((const U8*)s)[2] ) ? \
1707 ( ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x46, 0x47) ) ? 4 : 0 )\
1708 : ( 0x65 == ((const U8*)s)[2] ) ? \
1709 ( ( 0x72 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1710 : ( 0x70 == ((const U8*)s)[2] ) ? \
1711 ( ( 0x41 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1712 : ( ( 0x72 == ((const U8*)s)[2] ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x57, 0x59) || 0x5F == ((const U8*)s)[3] || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x66) ) ) ? 4 : 0 )\
1714 : ( 0xDF == ((const U8*)s)[0] ) ? \
1715 ( ( 0x56 == ((const U8*)s)[1] ) ? \
1716 ( ( ( 0x46 == ((const U8*)s)[2] ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x44) ) ) ? 4 : 0 )\
1717 : ( ( ( 0x62 == ((const U8*)s)[1] ) && ( 0x52 == ((const U8*)s)[2] ) ) && ( 0x5F == ((const U8*)s)[3] || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x68) ) ) ? 4 : 0 )\
1718 : ( ( ( ( ( 0xED == ((const U8*)s)[0] ) && ( 0x6A == ((const U8*)s)[1] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x44) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x51, 0x59) || 0x5F == ((const U8*)s)[3] || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[3], 0x70, 0x72) ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[4], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[4], 0x51, 0x59) || 0x5F == ((const U8*)s)[4] || inRANGE_helper_(U8, ((const U8*)s)[4], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[4], 0x70, 0x72) ) ) ? 5 : 0 )
1721 /*** GENERATED CODE ***/
1722 #define is_QUOTEMETA_high(s) \
1723 ( ( 0xAF == ((const U8*)s)[0] ) ? \
1724 ( ( 0x56 == ((const U8*)s)[1] ) ? 2 : 0 ) \
1725 : ( 0xB7 == ((const U8*)s)[0] ) ? \
1726 ( ( ( 0x57 == ((const U8*)s)[1] ) && ( 0x6A == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1727 : ( 0xBC == ((const U8*)s)[0] ) ? \
1728 ( ( 0x51 == ((const U8*)s)[1] ) ? \
1729 ( ( 0x72 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1730 : ( ( 0x52 == ((const U8*)s)[1] ) && ( 0x41 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1731 : ( 0xBD == ((const U8*)s)[0] ) ? \
1732 ( ( 0x62 == ((const U8*)s)[1] ) ? \
1733 ( ( 0x41 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1734 : ( ( 0x70 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x63) ) ) ? 3 : 0 )\
1735 : ( 0xBE == ((const U8*)s)[0] ) ? \
1736 ( ( ( 0x41 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x52, 0x55) ) ) ? 3 : 0 )\
1737 : ( 0xCA == ((const U8*)s)[0] ) ? is_QUOTEMETA_high_part0(s) : is_QUOTEMETA_high_part1(s) )
1740 MULTI_CHAR_FOLD: multi-char strings that are folded to by a single character
1742 ®charclass_multi_char_folds::multi_char_folds('u', 'a')
1744 /*** GENERATED CODE ***/
1745 #define is_MULTI_CHAR_FOLD_utf8_safe_part0(s,e) \
1746 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )
1749 /*** GENERATED CODE ***/
1750 #define is_MULTI_CHAR_FOLD_utf8_safe_part1(s,e) \
1751 ( ( 0x8E == ((const U8*)s)[0] ) ? \
1752 ( ( 0x72 == ((const U8*)s)[1] ) ? \
1753 ( ( 0x8E == ((const U8*)s)[2] ) ? \
1754 ( ( 0x72 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1755 : ( ( ((const U8*)s)[2] & 0xBE ) == 's' ) ? 3 : 0 ) \
1757 : ( ( ((const U8*)s)[0] & 0xBF ) == 'j' ) ? \
1758 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x53 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1759 : ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) ? \
1760 ( ( 0x8E == ((const U8*)s)[1] ) ? \
1761 ( ( 0x72 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1762 : ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ? 2 : 0 ) \
1763 : ( ( ((const U8*)s)[0] & 0xBF ) == 't' ) ? \
1764 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x49 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1765 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ?\
1766 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x51 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1767 : ( 0xAA == ((const U8*)s)[0] ) ? \
1768 ( ( ( 0x6A == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xBF ) == 'n' ) ) ? 3 : 0 )\
1769 : ( 0xB3 == ((const U8*)s)[0] ) ? \
1770 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? \
1771 ( ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1772 : ( 0x58 == ((const U8*)s)[1] || 0x65 == ((const U8*)s)[1] ) ? \
1773 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1774 ( ( 0x43 == ((const U8*)s)[3] ) ? \
1775 ( ( ( 0xB3 == ((const U8*)s)[4] ) && ( 0x67 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
1777 : ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1778 : ( 0x67 == ((const U8*)s)[1] ) ? \
1779 ( ( 0xAD == ((const U8*)s)[2] ) ? \
1780 ( ( 0x49 == ((const U8*)s)[3] ) ? \
1781 ( ( 0xAD == ((const U8*)s)[4] ) ? \
1782 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 0 )\
1783 : ( ( 0xAF == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1785 : ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1787 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1788 ( ( 0x42 == ((const U8*)s)[1] ) ? \
1789 ( ( ( 0xAD == ((const U8*)s)[2] ) && ( 0x5F == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1790 : ( 0x46 == ((const U8*)s)[1] ) ? \
1791 ( ( 0xAD == ((const U8*)s)[2] ) ? \
1792 ( ( 0x49 == ((const U8*)s)[3] ) ? \
1793 ( ( 0xAD == ((const U8*)s)[4] ) ? \
1794 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 0 )\
1795 : ( ( 0xAF == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1796 : ( 0x5F == ((const U8*)s)[3] ) ? \
1797 ( ( 0xAD == ((const U8*)s)[4] ) ? \
1798 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 4 )\
1799 : ( ( 0xAF == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
1801 : ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1802 : ( 0x4A == ((const U8*)s)[1] ) ? \
1803 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1804 ( ( 0x43 == ((const U8*)s)[3] ) ? \
1805 ( ( ( 0xB3 == ((const U8*)s)[4] ) && ( 0x67 == ((const U8*)s)[5] ) ) ? 6 : 4 )\
1807 : ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1808 : ( ( ( 0x55 == ((const U8*)s)[1] ) && ( 0xB3 == ((const U8*)s)[2] ) ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1809 : ( 0xB7 == ((const U8*)s)[0] ) ? \
1810 ( ( 0x52 == ((const U8*)s)[1] ) ? \
1811 ( ( 0x46 == ((const U8*)s)[2] ) ? \
1812 ( ( ( ( 0xB7 == ((const U8*)s)[3] ) && ( 0x53 == ((const U8*)s)[4] ) ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1813 : ( 0x62 == ((const U8*)s)[2] ) ? \
1814 ( ( ( ( 0xB7 == ((const U8*)s)[3] ) && ( 0x52 == ((const U8*)s)[4] ) ) && ( 0x46 == ((const U8*)s)[5] || 0x52 == ((const U8*)s)[5] || 0x54 == ((const U8*)s)[5] || 0x64 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1815 : ( ( ( ( 0x71 == ((const U8*)s)[2] ) && ( 0xB7 == ((const U8*)s)[3] ) ) && ( 0x52 == ((const U8*)s)[4] ) ) && ( 0x64 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
1817 : ( 0xBF == ((const U8*)s)[0] ) ? \
1818 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x66, 0x67) ) ? \
1819 ( ( ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) ) && ( 0xB3 == ((const U8*)s)[3] ) ) && ( 0x67 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
1820 : ( ( ( ( 0x69 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) || 0x57 == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || 0x6A == ((const U8*)s)[2] ) ) && ( 0xB3 == ((const U8*)s)[3] ) ) && ( 0x67 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
1824 /*** GENERATED CODE ***/
1825 #define is_MULTI_CHAR_FOLD_utf8_safe_part2(s,e) \
1826 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'a' ) ? \
1827 ( ( ( 0xAA == ((const U8*)s)[1] ) && ( 0x71 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1828 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1829 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1830 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1831 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1832 : ( ( ((const U8*)s)[0] & 0xBF ) == 'h' ) ? \
1833 ( ( ( 0xAE == ((const U8*)s)[1] ) && ( 0x58 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1834 : ( ( ((const U8*)s)[0] & 0xBF ) == 'i' ) ? \
1835 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1836 : ( 0x8E == ((const U8*)s)[0] ) ? \
1837 ( ( 0x72 == ((const U8*)s)[1] ) ? \
1838 ( ( 0x8E == ((const U8*)s)[2] ) ? \
1839 ( ( 0x72 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1840 : ( ( ((const U8*)s)[2] & 0xBE ) == 's' ) ? 3 : 0 ) \
1842 : ( ( ((const U8*)s)[0] & 0xBF ) == 'j' ) ? \
1843 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x53 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1844 : ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) ? \
1845 ( ( 0x8E == ((const U8*)s)[1] ) ? \
1846 ( ( 0x72 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1847 : ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ? 2 : 0 ) \
1848 : ( ( ((const U8*)s)[0] & 0xBF ) == 't' ) ? \
1849 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x49 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1850 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ?\
1851 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x51 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1852 : ( 0xAA == ((const U8*)s)[0] ) ? \
1853 ( ( ( 0x6A == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xBF ) == 'n' ) ) ? 3 : 0 )\
1854 : ( 0xB3 == ((const U8*)s)[0] ) ? \
1855 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? \
1856 ( ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1857 : ( 0x58 == ((const U8*)s)[1] || 0x65 == ((const U8*)s)[1] ) ? \
1858 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1859 ( ( 0x43 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1860 : ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1861 : ( ( ( 0x67 == ((const U8*)s)[1] ) && ( 0xAF == ((const U8*)s)[2] ) ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1862 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1863 ( ( 0x42 == ((const U8*)s)[1] ) ? \
1864 ( ( ( 0xAD == ((const U8*)s)[2] ) && ( 0x5F == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1865 : ( 0x46 == ((const U8*)s)[1] ) ? \
1866 ( ( 0xAD == ((const U8*)s)[2] ) ? \
1867 ( ( 0x5F == ((const U8*)s)[3] ) ? 4 : 0 ) \
1868 : ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1869 : ( 0x4A == ((const U8*)s)[1] ) ? \
1870 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1871 ( ( 0x43 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1872 : ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1873 : ( ( ( 0x55 == ((const U8*)s)[1] ) && ( 0xB3 == ((const U8*)s)[2] ) ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1874 : ( 0xBF == ((const U8*)s)[0] ) ? \
1875 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x66, 0x67) ) ? \
1876 ( ( ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) ) && ( 0xB3 == ((const U8*)s)[3] ) ) && ( 0x67 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
1877 : ( ( ( ( 0x69 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) || 0x57 == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || 0x6A == ((const U8*)s)[2] ) ) && ( 0xB3 == ((const U8*)s)[3] ) ) && ( 0x67 == ((const U8*)s)[4] ) ) ? 5 : 0 )\
1881 /*** GENERATED CODE ***/
1882 #define is_MULTI_CHAR_FOLD_utf8_safe_part3(s,e) \
1884 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'a' ) ? \
1885 ( ( ( 0xAA == ((const U8*)s)[1] ) && ( 0x71 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1886 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1887 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1888 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1889 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1890 : ( ( ((const U8*)s)[0] & 0xBF ) == 'h' ) ? \
1891 ( ( ( 0xAE == ((const U8*)s)[1] ) && ( 0x58 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1892 : ( ( ((const U8*)s)[0] & 0xBF ) == 'i' ) ? \
1893 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1894 : ( 0x8E == ((const U8*)s)[0] ) ? \
1895 ( ( 0x72 == ((const U8*)s)[1] ) ? \
1896 ( ( 0x8E == ((const U8*)s)[2] ) ? \
1897 ( ( 0x72 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1898 : ( ( ((const U8*)s)[2] & 0xBE ) == 's' ) ? 3 : 0 ) \
1900 : ( ( ((const U8*)s)[0] & 0xBF ) == 'j' ) ? \
1901 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x53 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1902 : ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) ? \
1903 ( ( 0x8E == ((const U8*)s)[1] ) ? \
1904 ( ( 0x72 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1905 : ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ? 2 : 0 ) \
1906 : ( ( ((const U8*)s)[0] & 0xBF ) == 't' ) ? \
1907 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x49 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1908 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ?\
1909 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x51 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1910 : ( 0xAA == ((const U8*)s)[0] ) ? \
1911 ( ( ( 0x6A == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xBF ) == 'n' ) ) ? 3 : 0 )\
1912 : ( 0xB3 == ((const U8*)s)[0] ) ? \
1913 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? \
1914 ( ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1915 : ( 0x58 == ((const U8*)s)[1] || 0x65 == ((const U8*)s)[1] ) ? \
1916 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1917 ( ( 0x43 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1918 : ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1919 : ( ( ( 0x67 == ((const U8*)s)[1] ) && ( 0xAF == ((const U8*)s)[2] ) ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1920 : ( 0xB4 == ((const U8*)s)[0] ) ? \
1921 ( ( 0x42 == ((const U8*)s)[1] ) ? \
1922 ( ( ( 0xAD == ((const U8*)s)[2] ) && ( 0x5F == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1923 : ( 0x46 == ((const U8*)s)[1] ) ? \
1924 ( ( 0xAD == ((const U8*)s)[2] ) ? \
1925 ( ( 0x5F == ((const U8*)s)[3] ) ? 4 : 0 ) \
1926 : ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1927 : ( 0x4A == ((const U8*)s)[1] ) ? \
1928 ( ( 0xAF == ((const U8*)s)[2] ) ? \
1929 ( ( 0x43 == ((const U8*)s)[3] ) ? 4 : 0 ) \
1930 : ( ( 0xB3 == ((const U8*)s)[2] ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1931 : ( ( ( 0x55 == ((const U8*)s)[1] ) && ( 0xB3 == ((const U8*)s)[2] ) ) && ( 0x67 == ((const U8*)s)[3] ) ) ? 4 : 0 )\
1934 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'a' ) ? \
1935 ( ( ( 0xAA == ((const U8*)s)[1] ) && ( 0x71 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1936 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1937 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1938 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1939 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1940 : ( ( ((const U8*)s)[0] & 0xBF ) == 'h' ) ? \
1941 ( ( ( 0xAE == ((const U8*)s)[1] ) && ( 0x58 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1942 : ( ( ((const U8*)s)[0] & 0xBF ) == 'i' ) ? \
1943 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1944 : ( 0x8E == ((const U8*)s)[0] ) ? \
1945 ( ( ( 0x72 == ((const U8*)s)[1] ) && ( ( ((const U8*)s)[2] & 0xBE ) == 's' ) ) ? 3 : 0 )\
1946 : ( ( ((const U8*)s)[0] & 0xBF ) == 'j' ) ? \
1947 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x53 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1948 : ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) ? \
1949 ( ( 0x8E == ((const U8*)s)[1] ) ? \
1950 ( ( 0x72 == ((const U8*)s)[2] ) ? 3 : 0 ) \
1951 : ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ? 2 : 0 ) \
1952 : ( ( ((const U8*)s)[0] & 0xBF ) == 't' ) ? \
1953 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x49 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1954 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ?\
1955 ( ( ( 0xAD == ((const U8*)s)[1] ) && ( 0x51 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1956 : ( ( ( 0xAA == ((const U8*)s)[0] ) && ( 0x6A == ((const U8*)s)[1] ) ) && ( ( ((const U8*)s)[2] & 0xBF ) == 'n' ) ) ? 3 : 0 )\
1958 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1959 ( ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1960 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) && ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ) ? 2 : 0 )\
1964 /*** GENERATED CODE ***/
1965 #define is_MULTI_CHAR_FOLD_utf8_safe(s,e) \
1967 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'a' ) ? \
1968 ( ( ( 0xAA == ((const U8*)s)[1] ) && ( 0x71 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1969 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1970 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1971 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1972 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1973 : ( ( ((const U8*)s)[0] & 0xBF ) == 'h' ) ? \
1974 ( ( ( 0xAE == ((const U8*)s)[1] ) && ( 0x58 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
1975 : ( ( ((const U8*)s)[0] & 0xBF ) == 'i' ) ? is_MULTI_CHAR_FOLD_utf8_safe_part0(s,e) : is_MULTI_CHAR_FOLD_utf8_safe_part1(s,e) )\
1976 : ((e)-(s) > 4) ? is_MULTI_CHAR_FOLD_utf8_safe_part2(s,e) : is_MULTI_CHAR_FOLD_utf8_safe_part3(s,e) )
1979 MULTI_CHAR_FOLD: multi-char strings that are folded to by a single character
1981 ®charclass_multi_char_folds::multi_char_folds('l', 'a')
1983 /*** GENERATED CODE ***/
1984 #define is_MULTI_CHAR_FOLD_latin1_safe(s,e) \
1986 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1987 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? \
1988 ( ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ? 3 : 2 )\
1989 : ( ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1990 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) && ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ) ? 2 : 0 )\
1992 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
1993 ( ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[1] & 0xBF ) == 'l' ) ) ? 2 : 0 )\
1994 : ( ( ( ((const U8*)s)[0] & 0xBF ) == 's' ) && ( ( ((const U8*)s)[1] & 0xBE ) == 's' ) ) ? 2 : 0 )\
1998 THREE_CHAR_FOLD: A three-character multi-char fold
2000 ®charclass_multi_char_folds::multi_char_folds('u', '3')
2002 /*** GENERATED CODE ***/
2003 #define is_THREE_CHAR_FOLD_utf8_safe(s,e) \
2005 ( ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
2006 ( ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) && ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ) ? 3 : 0 )\
2007 : ( 0xB3 == ((const U8*)s)[0] ) ? \
2008 ( ( 0x58 == ((const U8*)s)[1] || 0x65 == ((const U8*)s)[1] ) ? \
2009 ( ( ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) && ( 0xB3 == ((const U8*)s)[4] ) ) && ( 0x67 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
2010 : ( ( ( 0x67 == ((const U8*)s)[1] ) && ( 0xAD == ((const U8*)s)[2] ) ) && ( 0x49 == ((const U8*)s)[3] ) ) ? ( ( 0xAD == ((const U8*)s)[4] ) ?\
2011 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 0 )\
2012 : ( ( 0xAF == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 ) : 0 )\
2013 : ( 0xB4 == ((const U8*)s)[0] ) ? \
2014 ( ( 0x46 == ((const U8*)s)[1] ) ? \
2015 ( ( ( 0xAD == ((const U8*)s)[2] ) && ( 0x49 == ((const U8*)s)[3] || 0x5F == ((const U8*)s)[3] ) ) ? ( ( 0xAD == ((const U8*)s)[4] ) ?\
2016 ( ( inRANGE_helper_(U8, ((const U8*)s)[5], 0x41, 0x42) ) ? 6 : 0 )\
2017 : ( ( 0xAF == ((const U8*)s)[4] ) && ( 0x43 == ((const U8*)s)[5] ) ) ? 6 : 0 ) : 0 )\
2018 : ( ( ( ( ( 0x4A == ((const U8*)s)[1] ) && ( 0xAF == ((const U8*)s)[2] ) ) && ( 0x43 == ((const U8*)s)[3] ) ) && ( 0xB3 == ((const U8*)s)[4] ) ) && ( 0x67 == ((const U8*)s)[5] ) ) ? 6 : 0 )\
2020 : ( ( ( ((e)-(s) > 2) && ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ) && ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ) && ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ) ? 3 : 0 )
2023 THREE_CHAR_FOLD: A three-character multi-char fold
2025 ®charclass_multi_char_folds::multi_char_folds('l', '3')
2027 /*** GENERATED CODE ***/
2028 #define is_THREE_CHAR_FOLD_latin1_safe(s,e) \
2029 ( ( ( ( ( ((e) - (s)) >= 3 ) && ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ) && ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ) && ( ( ( ((const U8*)s)[2] & 0xBF ) == 'i' ) || ( ( ((const U8*)s)[2] & 0xBF ) == 'l' ) ) ) ? 3 : 0 )
2032 THREE_CHAR_FOLD_HEAD: The first two of three-character multi-char folds
2034 ®charclass_multi_char_folds::multi_char_folds('u', 'h')
2036 /*** GENERATED CODE ***/
2037 #define is_THREE_CHAR_FOLD_HEAD_utf8_safe(s,e) \
2039 ( ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ? 1\
2040 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
2041 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? 2 : 1 ) \
2042 : ( 0x8E == ((const U8*)s)[0] ) ? \
2043 ( ( 0x72 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2044 : ( 0xAA == ((const U8*)s)[0] ) ? \
2045 ( ( 0x6A == ((const U8*)s)[1] ) ? 2 : 0 ) \
2046 : ( 0xB3 == ((const U8*)s)[0] ) ? \
2047 ( ( 0x53 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? 2 \
2048 : ( 0x58 == ((const U8*)s)[1] || 0x65 == ((const U8*)s)[1] ) ? \
2049 ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
2050 : ( 0x67 == ((const U8*)s)[1] ) ? \
2051 ( ( ( 0xAD == ((const U8*)s)[2] ) && ( 0x49 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
2053 : ( 0xB4 == ((const U8*)s)[0] ) ? \
2054 ( ( 0x42 == ((const U8*)s)[1] || 0x55 == ((const U8*)s)[1] ) ? 2 \
2055 : ( 0x46 == ((const U8*)s)[1] ) ? \
2056 ( ( ( 0xAD == ((const U8*)s)[2] ) && ( 0x49 == ((const U8*)s)[3] || 0x5F == ((const U8*)s)[3] ) ) ? 4 : 2 )\
2057 : ( 0x4A == ((const U8*)s)[1] ) ? \
2058 ( ( ( 0xAF == ((const U8*)s)[2] ) && ( 0x43 == ((const U8*)s)[3] ) ) ? 4 : 2 )\
2060 : ( 0xB7 == ((const U8*)s)[0] ) ? \
2061 ( ( ( 0x52 == ((const U8*)s)[1] ) && ( 0x46 == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || 0x71 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
2062 : ( 0xBF == ((const U8*)s)[0] ) ? \
2063 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x66, 0x67) ) ? \
2064 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) ) ? 3 : 0 )\
2065 : ( ( 0x69 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) || 0x57 == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || 0x6A == ((const U8*)s)[2] ) ) ? 3 : 0 )\
2068 ( ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ? 1\
2069 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
2070 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? 2 : 1 ) \
2071 : ( 0x8E == ((const U8*)s)[0] ) ? \
2072 ( ( 0x72 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2073 : ( 0xAA == ((const U8*)s)[0] ) ? \
2074 ( ( 0x6A == ((const U8*)s)[1] ) ? 2 : 0 ) \
2075 : ( 0xB3 == ((const U8*)s)[0] ) ? \
2076 ( ( ((const U8*)s)[1] == 0x53 || ((const U8*)s)[1] == 0x55 || ((const U8*)s)[1] == 0x58 || ( ( ((const U8*)s)[1] & 0xFD ) == 0x65 ) ) ? 2 : 0 )\
2077 : ( 0xB4 == ((const U8*)s)[0] ) ? \
2078 ( ( ( ( ((const U8*)s)[1] & 0xFB ) == 0x42 ) || ((const U8*)s)[1] == 0x4A || ((const U8*)s)[1] == 0x55 ) ? 2 : 0 )\
2079 : ( 0xB7 == ((const U8*)s)[0] ) ? \
2080 ( ( ( 0x52 == ((const U8*)s)[1] ) && ( 0x46 == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || 0x71 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
2081 : ( 0xBF == ((const U8*)s)[0] ) ? \
2082 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x66, 0x67) ) ? \
2083 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) ) ? 3 : 0 )\
2084 : ( ( 0x69 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x48) || 0x57 == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || 0x6A == ((const U8*)s)[2] ) ) ? 3 : 0 )\
2087 ( ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ? 1\
2088 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
2089 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? 2 : 1 ) \
2090 : ( 0x8E == ((const U8*)s)[0] ) ? \
2091 ( ( 0x72 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2092 : ( 0xAA == ((const U8*)s)[0] ) ? \
2093 ( ( 0x6A == ((const U8*)s)[1] ) ? 2 : 0 ) \
2094 : ( 0xB3 == ((const U8*)s)[0] ) ? \
2095 ( ( ((const U8*)s)[1] == 0x53 || ((const U8*)s)[1] == 0x55 || ((const U8*)s)[1] == 0x58 || ( ( ((const U8*)s)[1] & 0xFD ) == 0x65 ) ) ? 2 : 0 )\
2096 : ( ( 0xB4 == ((const U8*)s)[0] ) && ( ( ( ((const U8*)s)[1] & 0xFB ) == 0x42 ) || ((const U8*)s)[1] == 0x4A || ((const U8*)s)[1] == 0x55 ) ) ? 2 : 0 )\
2098 ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0x9F ) == 'f' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) )\
2102 THREE_CHAR_FOLD_HEAD: The first two of three-character multi-char folds
2104 ®charclass_multi_char_folds::multi_char_folds('l', 'h')
2106 /*** GENERATED CODE ***/
2107 #define is_THREE_CHAR_FOLD_HEAD_latin1_safe(s,e) \
2109 ( ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'w' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) ) ? 1\
2110 : ( ( ((const U8*)s)[0] & 0xBF ) == 'f' ) ? \
2111 ( ( ( ((const U8*)s)[1] & 0xBF ) == 'f' ) ? 2 : 1 ) \
2114 ( ( ( ((const U8*)s)[0] & 0xAF ) == 'a' ) || ( ( ((const U8*)s)[0] & 0x9F ) == 'f' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 'h' ) || ( ( ((const U8*)s)[0] & 0xBE ) == 's' ) || ( ( ((const U8*)s)[0] & 0xBF ) == 'y' ) )\
2118 FOLDS_TO_MULTI: characters that fold to multi-char strings
2120 \p{_Perl_Folds_To_Multi_Char}
2122 /*** GENERATED CODE ***/
2123 #define is_FOLDS_TO_MULTI_utf8(s) \
2124 ( ( 0x80 == ((const U8*)s)[0] ) ? \
2125 ( ( 0x72 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2126 : ( 0x8C == ((const U8*)s)[0] || 0x9B == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 0xB2, 0xB3) ) ?\
2127 ( ( 0x57 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2128 : ( 0x8D == ((const U8*)s)[0] ) ? \
2129 ( ( 0x4A == ((const U8*)s)[1] ) ? 2 : 0 ) \
2130 : ( 0xB7 == ((const U8*)s)[0] ) ? \
2131 ( ( ( 0x53 == ((const U8*)s)[1] ) && ( 0x48 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
2132 : ( 0xBF == ((const U8*)s)[0] ) ? \
2133 ( ( 0x62 == ((const U8*)s)[1] ) ? \
2134 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x64, 0x68) || 0x71 == ((const U8*)s)[2] ) ? 3 : 0 )\
2135 : ( 0x68 == ((const U8*)s)[1] ) ? \
2136 ( ( 0x57 == ((const U8*)s)[2] || 0x59 == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || 0x64 == ((const U8*)s)[2] ) ? 3 : 0 )\
2137 : ( 0x6A == ((const U8*)s)[1] ) ? \
2138 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x59) || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x70, 0x72) ) ? 3 : 0 )\
2139 : ( 0x70 == ((const U8*)s)[1] ) ? \
2140 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x56) || 0x59 == ((const U8*)s)[2] || 0x5F == ((const U8*)s)[2] || 0x62 == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x64, 0x65) || 0x6A == ((const U8*)s)[2] ) ? 3 : 0 )\
2141 : ( 0x71 == ((const U8*)s)[1] ) ? \
2142 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x43, 0x45) || inRANGE_helper_(U8, ((const U8*)s)[2], 0x47, 0x48) || 0x53 == ((const U8*)s)[2] || 0x59 == ((const U8*)s)[2] || 0x5F == ((const U8*)s)[2] || inRANGE_helper_(U8, ((const U8*)s)[2], 0x64, 0x65) ) ? 3 : 0 )\
2143 : ( ( 0x72 == ((const U8*)s)[1] ) && ( ( ( ((const U8*)s)[2] & 0xFB ) == 0x43 ) || ( ( ((const U8*)s)[2] & 0xDE ) == 0x44 ) || ((const U8*)s)[2] == 0x48 || ((const U8*)s)[2] == 0x59 || ((const U8*)s)[2] == 0x5F || ( ( ((const U8*)s)[2] & '7' ) == 0x62 ) ) ) ? 3 : 0 )\
2144 : ( ( ( ( 0xDD == ((const U8*)s)[0] ) && ( 0x71 == ((const U8*)s)[1] ) ) && ( 0x66 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x47) || 0x5F == ((const U8*)s)[3] || inRANGE_helper_(U8, ((const U8*)s)[3], 0x62, 0x65) ) ) ? 4 : 0 )
2147 PROBLEMATIC_LOCALE_FOLD: characters whose fold is problematic under locale
2149 \p{_Perl_Problematic_Locale_Folds}
2151 /*** GENERATED CODE ***/
2152 #define is_PROBLEMATIC_LOCALE_FOLD_utf8(s) \
2153 ( ( ( ((const U8*)s)[0] <= ' ' ) || inRANGE_helper_(U8, ((const U8*)s)[0], '.', '&') || inRANGE_helper_(U8, ((const U8*)s)[0], '!', ';') || inRANGE_helper_(U8, ((const U8*)s)[0], '-', '/') || inRANGE_helper_(U8, ((const U8*)s)[0], ',', '?') || inRANGE_helper_(U8, ((const U8*)s)[0], '`', '"') || inRANGE_helper_(U8, ((const U8*)s)[0], 'a', 'i') || inRANGE_helper_(U8, ((const U8*)s)[0], 'j', 'r') || inRANGE_helper_(U8, ((const U8*)s)[0], '~', 'z') || '^' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], '[', ']') || inRANGE_helper_(U8, ((const U8*)s)[0], '{', 'I') || inRANGE_helper_(U8, ((const U8*)s)[0], '}', 'R') || '\\' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 'S', 'Z') || inRANGE_helper_(U8, ((const U8*)s)[0], '0', '9') || 0xFF == ((const U8*)s)[0] ) ? 1\
2154 : ( 0x78 == ((const U8*)s)[0] || 0x80 == ((const U8*)s)[0] || 0x8A == ((const U8*)s)[0] ) ?\
2155 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x51, 0x59) || 0x5F == ((const U8*)s)[1] || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x72) ) ? 2 : 0 )\
2156 : ( 0x8C == ((const U8*)s)[0] ) ? \
2157 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x57, 0x58) ) ? 2 : 0 ) \
2158 : ( 0x8D == ((const U8*)s)[0] ) ? \
2159 ( ( 0x4A == ((const U8*)s)[1] ) ? 2 : 0 ) \
2160 : ( 0x8E == ((const U8*)s)[0] ) ? \
2161 ( ( 0x66 == ((const U8*)s)[1] || 0x72 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2162 : ( 0x9B == ((const U8*)s)[0] ) ? \
2163 ( ( 0x57 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2164 : ( 0xAD == ((const U8*)s)[0] ) ? \
2165 ( ( 0x48 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2166 : ( inRANGE_helper_(U8, ((const U8*)s)[0], 0xB2, 0xB3) ) ? \
2167 ( ( 0x6A == ((const U8*)s)[1] ) ? 2 : 0 ) \
2168 : ( 0xBF == ((const U8*)s)[0] ) ? \
2169 ( ( ( 0x62 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x64, 0x68) || 0x71 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
2170 : ( 0xCA == ((const U8*)s)[0] ) ? \
2171 ( ( ( 0x4A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x52) ) ) ? 3 : 0 )\
2172 : ( ( ( ( 0xDD == ((const U8*)s)[0] ) && ( 0x71 == ((const U8*)s)[1] ) ) && ( 0x66 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x47) ) ) ? 4 : 0 )
2174 /*** GENERATED CODE ***/
2175 #define is_PROBLEMATIC_LOCALE_FOLD_cp(cp) \
2176 ( cp <= 0xFF || ( 0xFF < cp && \
2177 ( inRANGE_helper_(UV, cp, 0x130, 0x131) || ( 0x131 < cp && \
2178 ( 0x149 == cp || ( 0x149 < cp && \
2179 ( 0x178 == cp || ( 0x178 < cp && \
2180 ( 0x17F == cp || ( 0x17F < cp && \
2181 ( 0x1F0 == cp || ( 0x1F0 < cp && \
2182 ( 0x307 == cp || ( 0x307 < cp && \
2183 ( 0x39C == cp || ( 0x39C < cp && \
2184 ( 0x3BC == cp || ( 0x3BC < cp && \
2185 ( inRANGE_helper_(UV, cp, 0x1E96, 0x1E9A) || ( 0x1E9A < cp && \
2186 ( 0x1E9E == cp || ( 0x1E9E < cp && \
2187 ( inRANGE_helper_(UV, cp, 0x212A, 0x212B) || inRANGE_helper_(UV, cp, 0xFB00, 0xFB06) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
2190 PROBLEMATIC_LOCALE_FOLDEDS_START: The first folded character of folds which are problematic under locale
2192 \p{_Perl_Problematic_Locale_Foldeds_Start}
2194 /*** GENERATED CODE ***/
2195 #define is_PROBLEMATIC_LOCALE_FOLDEDS_START_utf8(s) \
2196 ( ( ( ((const U8*)s)[0] <= ' ' ) || inRANGE_helper_(U8, ((const U8*)s)[0], '.', '&') || inRANGE_helper_(U8, ((const U8*)s)[0], '!', ';') || inRANGE_helper_(U8, ((const U8*)s)[0], '-', '/') || inRANGE_helper_(U8, ((const U8*)s)[0], ',', '?') || inRANGE_helper_(U8, ((const U8*)s)[0], '`', '"') || inRANGE_helper_(U8, ((const U8*)s)[0], 'a', 'i') || inRANGE_helper_(U8, ((const U8*)s)[0], 'j', 'r') || inRANGE_helper_(U8, ((const U8*)s)[0], '~', 'z') || '^' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], '[', ']') || inRANGE_helper_(U8, ((const U8*)s)[0], '{', 'I') || inRANGE_helper_(U8, ((const U8*)s)[0], '}', 'R') || '\\' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 'S', 'Z') || inRANGE_helper_(U8, ((const U8*)s)[0], '0', '9') || 0xFF == ((const U8*)s)[0] ) ? 1\
2197 : ( 0x78 == ((const U8*)s)[0] || 0x80 == ((const U8*)s)[0] || 0x8A == ((const U8*)s)[0] ) ?\
2198 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x41, 0x4A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x51, 0x59) || 0x5F == ((const U8*)s)[1] || inRANGE_helper_(U8, ((const U8*)s)[1], 0x62, 0x6A) || inRANGE_helper_(U8, ((const U8*)s)[1], 0x70, 0x72) ) ? 2 : 0 )\
2199 : ( 0x8C == ((const U8*)s)[0] ) ? \
2200 ( ( inRANGE_helper_(U8, ((const U8*)s)[1], 0x57, 0x58) ) ? 2 : 0 ) \
2201 : ( 0x8D == ((const U8*)s)[0] ) ? \
2202 ( ( 0x4A == ((const U8*)s)[1] ) ? 2 : 0 ) \
2203 : ( 0x8E == ((const U8*)s)[0] ) ? \
2204 ( ( 0x66 == ((const U8*)s)[1] || 0x72 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2205 : ( 0x9B == ((const U8*)s)[0] ) ? \
2206 ( ( 0x57 == ((const U8*)s)[1] ) ? 2 : 0 ) \
2207 : ( 0xAA == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], 0xB2, 0xB3) ) ?\
2208 ( ( 0x6A == ((const U8*)s)[1] ) ? 2 : 0 ) \
2209 : ( 0xBF == ((const U8*)s)[0] ) ? \
2210 ( ( ( 0x62 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x64, 0x68) || 0x71 == ((const U8*)s)[2] ) ) ? 3 : 0 )\
2211 : ( 0xCA == ((const U8*)s)[0] ) ? \
2212 ( ( ( 0x4A == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x51, 0x52) ) ) ? 3 : 0 )\
2213 : ( ( ( ( 0xDD == ((const U8*)s)[0] ) && ( 0x71 == ((const U8*)s)[1] ) ) && ( 0x66 == ((const U8*)s)[2] ) ) && ( inRANGE_helper_(U8, ((const U8*)s)[3], 0x41, 0x47) ) ) ? 4 : 0 )
2215 /*** GENERATED CODE ***/
2216 #define is_PROBLEMATIC_LOCALE_FOLDEDS_START_cp(cp) \
2217 ( cp <= 0xFF || ( 0xFF < cp && \
2218 ( inRANGE_helper_(UV, cp, 0x130, 0x131) || ( 0x131 < cp && \
2219 ( 0x149 == cp || ( 0x149 < cp && \
2220 ( 0x178 == cp || ( 0x178 < cp && \
2221 ( 0x17F == cp || ( 0x17F < cp && \
2222 ( 0x1F0 == cp || ( 0x1F0 < cp && \
2223 ( 0x2BC == cp || ( 0x2BC < cp && \
2224 ( 0x39C == cp || ( 0x39C < cp && \
2225 ( 0x3BC == cp || ( 0x3BC < cp && \
2226 ( inRANGE_helper_(UV, cp, 0x1E96, 0x1E9A) || ( 0x1E9A < cp && \
2227 ( 0x1E9E == cp || ( 0x1E9E < cp && \
2228 ( inRANGE_helper_(UV, cp, 0x212A, 0x212B) || inRANGE_helper_(UV, cp, 0xFB00, 0xFB06) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )
2231 PATWS: pattern white space
2235 /*** GENERATED CODE ***/
2236 #define is_PATWS_safe(s,e,is_utf8) \
2237 ( ( LIKELY((e) > (s)) ) ? \
2238 ( ( '\t' == ((const U8*)s)[0] || inRANGE_helper_(U8, ((const U8*)s)[0], '\v', '\r') || 0x15 == ((const U8*)s)[0] || '\n' == ((const U8*)s)[0] || ' ' == ((const U8*)s)[0] ) ? 1\
2239 : ( ( is_utf8 && LIKELY(((e) - (s)) >= UTF8SKIP(s)) ) && ( 0xCA == ((const U8*)s)[0] ) ) ? ( ( 0x41 == ((const U8*)s)[1] ) ?\
2240 ( ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x55, 0x56) ) ? 3 : 0 )\
2241 : ( ( 0x42 == ((const U8*)s)[1] ) && ( inRANGE_helper_(U8, ((const U8*)s)[2], 0x49, 0x4A) ) ) ? 3 : 0 ) : 0 )\
2244 #endif /* EBCDIC 037 */
2246 #endif /* PERL_REGCHARCLASS_H_ */
2249 * d60b1a3dffe16c4aaaf3f00d21993bb320d05e9828b106182214764d4c69935c lib/Unicode/UCD.pm
2250 * ce96627d4fc91b4fd886c409caeb9b76cf7bd345e12f05c6701add7f233f6437 lib/unicore/ArabicShaping.txt
2251 * 0e69eef3da722cc104522d8372e86d5b86bb7afcc761b0c991e39e832294946d lib/unicore/BidiBrackets.txt
2252 * a00d9d21585106a52113fb7b1d3d0373a5835be72e76862fb559ebddd474d70e lib/unicore/BidiMirroring.txt
2253 * 81a82b6a9fcf1a9c12f588d7a1decd73a9afdc4cac95b0eb7e576e7942d6c19f lib/unicore/Blocks.txt
2254 * 99d231d7c91688bbe8ca8ccebcc2f46b5b222f844babe4827295bae11e2abe5f lib/unicore/CaseFolding.txt
2255 * 38badafd818d8405324fe298c0676be0c95186368c84b5368375fd871a645144 lib/unicore/CompositionExclusions.txt
2256 * e779a443d3aa2a3166a15becaa2b737c922480e32c0453d5956093633555078f lib/unicore/DAge.txt
2257 * a5d45f59b39deaab3c72ce8c1a2e212a5e086dff11b1f9d5bb0e352642e82248 lib/unicore/DCoreProperties.txt
2258 * 3ac44e11c84bdaf6b207d2c2c20eed857ae17052393fc7f71b0fe951186ba906 lib/unicore/DNormalizationProps.txt
2259 * 4f822ec7a9ebbb3138ad29bade8b9688d25b39c7a3c0b7431f01e7229e4fcb6e lib/unicore/EastAsianWidth.txt
2260 * fc535aa1047a70105ab9a22c2b4c3f363a2ff02fe48ebbc5eeb9873b2752ff0b lib/unicore/EquivalentUnifiedIdeograph.txt
2261 * b9c5158ce944d2fec57e0e4ecb716bdabfc3bdde73525f1772fe03f61a30d473 lib/unicore/HangulSyllableType.txt
2262 * 36c1b2a626ff1fb23b8b21e6ea8712698f8ce668dded1cb48b8ddf6a6a1b04e9 lib/unicore/IdStatus.txt
2263 * 4857c4ffa3898e6128b2d46b0a02e499a663fb91464a69ef3611096f01293acc lib/unicore/IdType.txt
2264 * 69197b019fa5f2fb0d8c6ed1ed8acb9f2e8b5b8f45a947953ffa652f3bf54983 lib/unicore/IndicPositionalCategory.txt
2265 * 6604e2f0fde7428675364aa0006bc686b79488dcc60ae8cb29800af2be3352e8 lib/unicore/IndicSyllabicCategory.txt
2266 * 84ead63924aaa74b988b2eaf254a8733276ed108633ce2ef77a9ee1de7818162 lib/unicore/Jamo.txt
2267 * d5abcd8f54c8a2aa912924c485ccf7f968ad98feaa303d8e9a29ad89172f1faf lib/unicore/LineBreak.txt
2268 * 985128e8c8b2540233331d9b27d897d2c23bd5bcf1d05da960befce6efc59542 lib/unicore/NameAliases.txt
2269 * 27282b8aa01d4d0c44aef436cb74195ae8639ffa187aeee4e6247af76febea76 lib/unicore/NamedSequences.txt
2270 * 485b5a3ed25dbf1f94dfa5a9b69d8b4550ffd0c33045ccc55ccfd7c80b2a40cf lib/unicore/PropList.txt
2271 * 6b3902e9268cd843fe65cbdea992108c9528343ec0679f800b96f356bb553e5a lib/unicore/PropValueAliases.txt
2272 * 2bd5777847e3d6add3c7e5c0d1393ddcab89e5a0ac3ff498cb0c53041f0b86e4 lib/unicore/PropertyAliases.txt
2273 * 03a61dc89422e44cc2b73e8e893321007880ab69e2a4d281c0f1bc29c602b9d0 lib/unicore/ScriptExtensions.txt
2274 * 9a5ed1ec9b5f0d7147e9371ad792ab39203611af7637cff2aa4a5c663b172cde lib/unicore/Scripts.txt
2275 * 6424312f1dc39b22e0ff9c0ffb13dfad424d9b03e6a6dc6bca941f6bf5ef1ffd lib/unicore/SpecialCasing.txt
2276 * bdbffbbfc8ad4d3a6d01b5891510458f3d36f7170422af4ea2bed3211a73e8bb lib/unicore/UnicodeData.txt
2277 * 160f41816234addb511901d5f21febd69574578dd93de6ef8153e35693325575 lib/unicore/VerticalOrientation.txt
2278 * 32dfb37d21db530529a6ec3dc13d96f21f8e7c7faf7ff3db8a9760cd76cec81d lib/unicore/auxiliary/GCBTest.txt
2279 * 2bd3c5e2d62701ff81fb3ec318e179a4618cabb1493b1e0dd2b4e7e56c5437c4 lib/unicore/auxiliary/GraphemeBreakProperty.txt
2280 * c51fbebfa82a0f36473b44bfd71d5ef6cb6a1f81fb313375dc9a1910d79bb2b6 lib/unicore/auxiliary/LBTest.txt
2281 * 80b0107750818d8f370bd120b6fe56b6855b60581f72affe8b60409a469b4b65 lib/unicore/auxiliary/SBTest.txt
2282 * 09e3166ebab166ac630a227f77f4e794ebd433271abd5588f5a67e7f199c71ee lib/unicore/auxiliary/SentenceBreakProperty.txt
2283 * bf5373ce28a5df06796c93dc159dd15a997bb2950c92704b40ae8190cfc3716d lib/unicore/auxiliary/WBTest.txt
2284 * a2b7373cf2fe3fa3b26dbb53405ca849985f771ff47f1c61743978003ff80499 lib/unicore/auxiliary/WordBreakProperty.txt
2285 * d2686f400a638c80775d7c662556fb8fa8dd3bbe4aa548d9d31624264c6e1bb1 lib/unicore/emoji/emoji.txt
2286 * b827ae5da8c2b08947cc9a120a7b7fd2f1676fb160b508df78075381635b127c lib/unicore/extracted/DBidiClass.txt
2287 * 6fdc5b5ef40444a8f0c772e6b67c00498d4216fe0c0fdf76744ce338f2ad3810 lib/unicore/extracted/DBinaryProperties.txt
2288 * e14928a5bf6ad5958a80332bd42e96e14420080a95c660e5da29384e496755d0 lib/unicore/extracted/DCombiningClass.txt
2289 * 579a03281fbe87b78d5d9a8523de4d255edd7e4ca6eab0e4c7729de97e9b89b1 lib/unicore/extracted/DDecompositionType.txt
2290 * ad83c59b257e9d480ffd3001d4ac240c5fed7cb1919453e1c4e8877035256bcd lib/unicore/extracted/DEastAsianWidth.txt
2291 * 4502f0969e4e6558c4b4c6ca4c23dad70b863d61dd3d5eed1a62a6c3c99fd570 lib/unicore/extracted/DGeneralCategory.txt
2292 * 00bb88b89e2adb646f3177f9444e2d3192386b81a5de9556104b338274b253e1 lib/unicore/extracted/DJoinGroup.txt
2293 * ac835b6e11a60c9820d3cf2d1cb0558dd68efb8f53f404a51632e4726690a6d7 lib/unicore/extracted/DJoinType.txt
2294 * baba9dfc133e3cb770a89aaf0973b1341fa61c2da6c176baf6428898b3b568d8 lib/unicore/extracted/DLineBreak.txt
2295 * 6d4a8c945dd7db83ed617cbb7d937de7f4ecf016ff22970d846e996a7c9a2a5d lib/unicore/extracted/DNumType.txt
2296 * 5b7c14380d5cceeaffcfbc18db1ed936391d2af2d51f5a41f1a17b692c77e59b lib/unicore/extracted/DNumValues.txt
2297 * ee0dd174fd5b158d82dfea95d7d822ca0bfcd490182669353dca3ab39a8ee807 lib/unicore/mktables
2298 * 50b85a67451145545a65cea370dab8d3444fbfe07e9c34cef560c5b7da9d3eef lib/unicore/version
2299 * 2680b9254eb236c5c090f11b149605043e8c8433661b96efc4a42fb4709342a5 regen/charset_translations.pl
2300 * e3e72d7df46550e894d860fec08cc81ca9e1d2205a81fb48733e74b8853281be regen/regcharclass.pl
2301 * c0a5e4cb2b9ffad78691938e122c1310bbc98aca2364af243e5c6b2ec0f59dc3 regen/regcharclass_multi_char_folds.pl