/* Generated by re2c */ #line 1 "unicode_group_Cc.8--encoding-policy(fail).re" #include #include "utf8.h" #define YYCTYPE unsigned char 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 Cc: #line 13 "unicode_group_Cc.8--encoding-policy(fail).c" { YYCTYPE yych; yych = *YYCURSOR; switch (yych) { case 0x00: case 0x01: case 0x02: case 0x03: case 0x04: case 0x05: case 0x06: case 0x07: case 0x08: case '\t': case '\n': case '\v': case '\f': case '\r': case 0x0E: case 0x0F: case 0x10: case 0x11: case 0x12: case 0x13: case 0x14: case 0x15: case 0x16: case 0x17: case 0x18: case 0x19: case 0x1A: case 0x1B: case 0x1C: case 0x1D: case 0x1E: case 0x1F: case 0x7F: goto yy2; case 0xC2: goto yy6; default: goto yy4; } yy2: ++YYCURSOR; #line 12 "unicode_group_Cc.8--encoding-policy(fail).re" { goto Cc; } #line 58 "unicode_group_Cc.8--encoding-policy(fail).c" yy4: ++YYCURSOR; yy5: #line 13 "unicode_group_Cc.8--encoding-policy(fail).re" { return YYCURSOR == limit; } #line 64 "unicode_group_Cc.8--encoding-policy(fail).c" yy6: yych = *++YYCURSOR; switch (yych) { case 0x80: case 0x81: case 0x82: case 0x83: case 0x84: case 0x85: case 0x86: case 0x87: case 0x88: case 0x89: case 0x8A: case 0x8B: case 0x8C: case 0x8D: case 0x8E: case 0x8F: case 0x90: case 0x91: case 0x92: case 0x93: case 0x94: case 0x95: case 0x96: case 0x97: case 0x98: case 0x99: case 0x9A: case 0x9B: case 0x9C: case 0x9D: case 0x9E: case 0x9F: goto yy2; default: goto yy5; } } #line 14 "unicode_group_Cc.8--encoding-policy(fail).re" } static const unsigned int chars_Cc [] = {0x0,0x1f, 0x7f,0x9f, 0x20,0x20}; static unsigned int encode_utf8 (const unsigned int * ranges, unsigned int ranges_count, unsigned char * s) { unsigned char * const s_start = s; for (unsigned int i = 0; i < ranges_count - 2; i += 2) for (unsigned int j = ranges[i]; j <= ranges[i + 1]; ++j) s += re2c::utf8::rune_to_bytes (s, j); re2c::utf8::rune_to_bytes (s, ranges[ranges_count - 1]); return s - s_start + 1; } int main () { YYCTYPE * buffer_Cc = new YYCTYPE [264]; unsigned int buffer_len = encode_utf8 (chars_Cc, sizeof (chars_Cc) / sizeof (unsigned int), buffer_Cc); if (!scan (reinterpret_cast (buffer_Cc), reinterpret_cast (buffer_Cc + buffer_len))) printf("test 'Cc' failed\n"); delete [] buffer_Cc; return 0; }