1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include <stdio.h>
#define YYCTYPE unsigned int
bool scan(const YYCTYPE * start, const YYCTYPE * const limit)
{
__attribute__((unused)) const YYCTYPE * YYMARKER; // silence compiler warnings when YYMARKER is not used
# define YYCURSOR start
Lt:
/*!re2c
re2c:yyfill:enable = 0;
Lt = [\u01c5-\u01c5\u01c8-\u01c8\u01cb-\u01cb\u01f2-\u01f2\u1f88-\u1f8f\u1f98-\u1f9f\u1fa8-\u1faf\u1fbc-\u1fbc\u1fcc-\u1fcc\u1ffc-\u1ffc];
Lt { goto Lt; }
* { return YYCURSOR == limit; }
*/
}
static const unsigned int chars_Lt [] = {0x1c5,0x1c5, 0x1c8,0x1c8, 0x1cb,0x1cb, 0x1f2,0x1f2, 0x1f88,0x1f8f, 0x1f98,0x1f9f, 0x1fa8,0x1faf, 0x1fbc,0x1fbc, 0x1fcc,0x1fcc, 0x1ffc,0x1ffc, 0x0,0x0};
static unsigned int encode_utf32 (const unsigned int * ranges, unsigned int ranges_count, unsigned int * s)
{
unsigned int * const s_start = s;
for (unsigned int i = 0; i < ranges_count; i += 2)
for (unsigned int j = ranges[i]; j <= ranges[i + 1]; ++j)
*s++ = j;
return s - s_start;
}
int main ()
{
YYCTYPE * buffer_Lt = new YYCTYPE [32];
unsigned int buffer_len = encode_utf32 (chars_Lt, sizeof (chars_Lt) / sizeof (unsigned int), buffer_Lt);
if (!scan (reinterpret_cast<const YYCTYPE *> (buffer_Lt), reinterpret_cast<const YYCTYPE *> (buffer_Lt + buffer_len)))
printf("test 'Lt' failed\n");
delete [] buffer_Lt;
return 0;
}
|