├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── benchmarks.yml │ ├── ci-autotools.yml │ └── ci-cmake.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── BUILD.bazel ├── BUILD.md ├── CHANGELOG ├── CMakeLists.txt ├── CMakePresets.json ├── CONTRIBUTING.md ├── IDEAS.md ├── LICENSE ├── MAINTAINERS.md ├── MODULE.bazel ├── Makefile.am ├── Makefile.lib.am ├── NO_WARRANTY ├── README.md ├── WORKSPACE ├── WORKSPACE.bzlmod ├── add-release.txt ├── autogen.sh ├── bazel ├── BUILD.bazel ├── re2c.bzl └── re2c_config.h ├── benchmarks ├── _data │ ├── alt1 │ │ └── small │ ├── alt2 │ │ └── small │ ├── alt4 │ │ └── small │ ├── apache │ │ └── small │ ├── cat2 │ │ └── small │ ├── cat4 │ │ └── small │ ├── cat8 │ │ └── small │ ├── datetime │ │ └── small │ ├── email │ │ └── small │ ├── gen.py │ ├── http │ │ └── small │ ├── ipv4 │ │ └── small │ ├── numbers1 │ │ └── small │ ├── numbers2 │ │ └── small │ ├── rep │ │ └── small │ ├── uri │ │ └── small │ ├── words1 │ │ └── small │ ├── words2 │ │ └── small │ └── words3 │ │ └── small ├── _engines │ └── ragel │ │ ├── getragel6.sh │ │ └── getragel7.sh ├── _scripts │ └── json2pgfplot.py └── c │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README │ ├── common │ ├── common.cc │ ├── common.h │ ├── strings_atom.h │ ├── strings_date.h │ ├── strings_http.h │ ├── strings_ipv4.h │ ├── strings_ipv6.h │ └── strings_uri.h │ ├── libre2c │ ├── java │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README │ │ ├── ReTdfa.java │ │ ├── chart.js │ │ ├── libre2c │ │ │ ├── RE2C.cpp │ │ │ ├── RE2C.java │ │ │ └── README │ │ ├── results │ │ │ ├── env_20220310.rst │ │ │ ├── results_20220310_dense.tex │ │ │ └── results_20220310_sparse.tex │ │ ├── run.py.in │ │ └── samples.ser.zip │ ├── jit │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── bench.cc │ │ └── results │ │ │ ├── env_20210402.rst │ │ │ ├── env_20220310.rst │ │ │ ├── results_20210402.json │ │ │ └── results_20220310.json │ └── nfa │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── bench.cc │ │ └── results │ │ ├── env_20210402.rst │ │ └── results_20210402.json │ ├── pregen │ ├── ragel │ │ ├── lex_00__numbers1.cc │ │ ├── lex_01__numbers2.cc │ │ ├── lex_02__words1.cc │ │ ├── lex_03__words2.cc │ │ ├── lex_04__words3.cc │ │ ├── submatch_00__http_rfc7230.cc │ │ ├── submatch_01__http_simple.cc │ │ ├── submatch_02__uri_rfc3986.cc │ │ ├── submatch_03__uri_simple.cc │ │ ├── submatch_04__apache_log.cc │ │ ├── submatch_05__datetime.cc │ │ ├── submatch_06__email.cc │ │ ├── submatch_07__ipv4.cc │ │ ├── submatch_10__alt1_2.cc │ │ ├── submatch_11__alt1_4.cc │ │ ├── submatch_12__alt1_8.cc │ │ ├── submatch_13__alt2_2.cc │ │ ├── submatch_14__alt2_4.cc │ │ ├── submatch_15__alt2_8.cc │ │ ├── submatch_16__alt4_2.cc │ │ ├── submatch_17__alt4_4.cc │ │ ├── submatch_18__alt4_8.cc │ │ ├── submatch_20__cat2_0.cc │ │ ├── submatch_21__cat2_4.cc │ │ ├── submatch_22__cat2_8.cc │ │ ├── submatch_23__cat4_0.cc │ │ ├── submatch_24__cat4_2.cc │ │ ├── submatch_25__cat4_4.cc │ │ ├── submatch_26__cat8_0.cc │ │ ├── submatch_27__cat8_1.cc │ │ ├── submatch_28__cat8_2.cc │ │ ├── submatch_30__rep_cat_5_3_2.cc │ │ ├── submatch_31__rep_cat_13_11_7.cc │ │ ├── submatch_32__rep_cat_23_19_17.cc │ │ ├── submatch_33__rep_alt_5_3_2.cc │ │ ├── submatch_34__rep_alt_13_11_7.cc │ │ ├── submatch_35__rep_alt_23_19_17.cc │ │ ├── submatch_36__rep_5_rep_3_rep_2.cc │ │ ├── submatch_37__rep_13_rep_11_rep_7.cc │ │ └── submatch_38__rep_23_rep_19_rep_17.cc │ └── re2c │ │ ├── lex_00__numbers1.cc │ │ ├── lex_01__numbers2.cc │ │ ├── lex_02__words1.cc │ │ ├── lex_03__words2.cc │ │ ├── lex_04__words3.cc │ │ ├── submatch_00__http_rfc7230.cc │ │ ├── submatch_01__http_simple.cc │ │ ├── submatch_02__uri_rfc3986.cc │ │ ├── submatch_03__uri_simple.cc │ │ ├── submatch_04__apache_log.cc │ │ ├── submatch_05__datetime.cc │ │ ├── submatch_06__email.cc │ │ ├── submatch_07__ipv4.cc │ │ ├── submatch_10__alt1_2.cc │ │ ├── submatch_11__alt1_4.cc │ │ ├── submatch_12__alt1_8.cc │ │ ├── submatch_13__alt2_2.cc │ │ ├── submatch_14__alt2_4.cc │ │ ├── submatch_15__alt2_8.cc │ │ ├── submatch_16__alt4_2.cc │ │ ├── submatch_17__alt4_4.cc │ │ ├── submatch_18__alt4_8.cc │ │ ├── submatch_20__cat2_0.cc │ │ ├── submatch_21__cat2_4.cc │ │ ├── submatch_22__cat2_8.cc │ │ ├── submatch_23__cat4_0.cc │ │ ├── submatch_24__cat4_2.cc │ │ ├── submatch_25__cat4_4.cc │ │ ├── submatch_26__cat8_0.cc │ │ ├── submatch_27__cat8_1.cc │ │ ├── submatch_28__cat8_2.cc │ │ ├── submatch_30__rep_cat_5_3_2.cc │ │ ├── submatch_31__rep_cat_13_11_7.cc │ │ ├── submatch_32__rep_cat_23_19_17.cc │ │ ├── submatch_33__rep_alt_5_3_2.cc │ │ ├── submatch_34__rep_alt_13_11_7.cc │ │ ├── submatch_35__rep_alt_23_19_17.cc │ │ ├── submatch_36__rep_5_rep_3_rep_2.cc │ │ ├── submatch_37__rep_13_rep_11_rep_7.cc │ │ └── submatch_38__rep_23_rep_19_rep_17.cc │ ├── results │ ├── env_20210402.rst │ ├── env_20220224.rst │ ├── env_20250131.rst │ ├── results_20210402.json │ ├── results_20220224.json │ ├── results_20250131.json │ └── split_results.sh │ ├── run.py.in │ └── src │ ├── bench.cc │ ├── common.h │ ├── ragel │ ├── base.h │ ├── lex_00__numbers1.rl │ ├── lex_01__numbers2.rl │ ├── lex_02__words1.rl │ ├── lex_03__words2.rl │ ├── lex_04__words3.rl │ ├── submatch_00__http_rfc7230.rl │ ├── submatch_01__http_simple.rl │ ├── submatch_02__uri_rfc3986.rl │ ├── submatch_03__uri_simple.rl │ ├── submatch_04__apache_log.rl │ ├── submatch_05__datetime.rl │ ├── submatch_06__email.rl │ ├── submatch_07__ipv4.rl │ ├── submatch_10__alt1_2.rl │ ├── submatch_11__alt1_4.rl │ ├── submatch_12__alt1_8.rl │ ├── submatch_13__alt2_2.rl │ ├── submatch_14__alt2_4.rl │ ├── submatch_15__alt2_8.rl │ ├── submatch_16__alt4_2.rl │ ├── submatch_17__alt4_4.rl │ ├── submatch_18__alt4_8.rl │ ├── submatch_20__cat2_0.rl │ ├── submatch_21__cat2_4.rl │ ├── submatch_22__cat2_8.rl │ ├── submatch_23__cat4_0.rl │ ├── submatch_24__cat4_2.rl │ ├── submatch_25__cat4_4.rl │ ├── submatch_26__cat8_0.rl │ ├── submatch_27__cat8_1.rl │ ├── submatch_28__cat8_2.rl │ ├── submatch_30__rep_cat_5_3_2.rl │ ├── submatch_31__rep_cat_13_11_7.rl │ ├── submatch_32__rep_cat_23_19_17.rl │ ├── submatch_33__rep_alt_5_3_2.rl │ ├── submatch_34__rep_alt_13_11_7.rl │ ├── submatch_35__rep_alt_23_19_17.rl │ ├── submatch_36__rep_5_rep_3_rep_2.rl │ ├── submatch_37__rep_13_rep_11_rep_7.rl │ └── submatch_38__rep_23_rep_19_rep_17.rl │ ├── re2c │ ├── base.h │ ├── base.re │ ├── lex_00__numbers1.re │ ├── lex_01__numbers2.re │ ├── lex_02__words1.re │ ├── lex_03__words2.re │ ├── lex_04__words3.re │ ├── submatch_00__http_rfc7230.re │ ├── submatch_01__http_simple.re │ ├── submatch_02__uri_rfc3986.re │ ├── submatch_03__uri_simple.re │ ├── submatch_04__apache_log.re │ ├── submatch_05__datetime.re │ ├── submatch_06__email.re │ ├── submatch_07__ipv4.re │ ├── submatch_10__alt1_2.re │ ├── submatch_11__alt1_4.re │ ├── submatch_12__alt1_8.re │ ├── submatch_13__alt2_2.re │ ├── submatch_14__alt2_4.re │ ├── submatch_15__alt2_8.re │ ├── submatch_16__alt4_2.re │ ├── submatch_17__alt4_4.re │ ├── submatch_18__alt4_8.re │ ├── submatch_20__cat2_0.re │ ├── submatch_21__cat2_4.re │ ├── submatch_22__cat2_8.re │ ├── submatch_23__cat4_0.re │ ├── submatch_24__cat4_2.re │ ├── submatch_25__cat4_4.re │ ├── submatch_26__cat8_0.re │ ├── submatch_27__cat8_1.re │ ├── submatch_28__cat8_2.re │ ├── submatch_30__rep_cat_5_3_2.re │ ├── submatch_31__rep_cat_13_11_7.re │ ├── submatch_32__rep_cat_23_19_17.re │ ├── submatch_33__rep_alt_5_3_2.re │ ├── submatch_34__rep_alt_13_11_7.re │ ├── submatch_35__rep_alt_23_19_17.re │ ├── submatch_36__rep_5_rep_3_rep_2.re │ ├── submatch_37__rep_13_rep_11_rep_7.re │ └── submatch_38__rep_23_rep_19_rep_17.re │ └── test.cc ├── bootstrap ├── doc │ ├── re2c.1 │ ├── re2d.1 │ ├── re2go.1 │ ├── re2hs.1 │ ├── re2java.1 │ ├── re2js.1 │ ├── re2ocaml.1 │ ├── re2py.1 │ ├── re2rust.1 │ ├── re2swift.1 │ ├── re2v.1 │ └── re2zig.1 ├── lib │ ├── lex.cc │ ├── parse.cc │ ├── parse.h │ └── test_helper.cc └── src │ ├── default_syntax_c.h │ ├── default_syntax_d.h │ ├── default_syntax_go.h │ ├── default_syntax_haskell.h │ ├── default_syntax_java.h │ ├── default_syntax_js.h │ ├── default_syntax_ocaml.h │ ├── default_syntax_python.h │ ├── default_syntax_rust.h │ ├── default_syntax_swift.h │ ├── default_syntax_v.h │ ├── default_syntax_zig.h │ ├── msg │ ├── help_re2c.cc │ ├── help_re2d.cc │ ├── help_re2go.cc │ ├── help_re2hs.cc │ ├── help_re2java.cc │ ├── help_re2js.cc │ ├── help_re2ocaml.cc │ ├── help_re2py.cc │ ├── help_re2rust.cc │ ├── help_re2swift.cc │ ├── help_re2v.cc │ ├── help_re2zig.cc │ └── ver_to_vernum.cc │ ├── options │ └── parse_opts.cc │ └── parse │ ├── conf_lexer.cc │ ├── conf_parser.cc │ ├── conf_parser.h │ ├── lexer.cc │ ├── lexer.h │ ├── parser.cc │ └── parser.h ├── cmake ├── Re2cAutotoolsHelpers.cmake ├── Re2cBootstrapLexer.cmake ├── Re2cBootstrapParser.cmake ├── Re2cBootstrapSyntax.cmake ├── Re2cBuildType.cmake ├── Re2cCompilerFlags.cmake ├── Re2cGenDocs.cmake ├── Toolchain-cross-mingw32-linux.cmake └── Toolchain-cross-mingw64-linux.cmake ├── configure.ac ├── doc ├── README ├── help.rst.in ├── manpage.rst.in ├── manual │ ├── authors.rst_ │ ├── basics │ │ ├── actions.rst_ │ │ ├── api │ │ │ ├── api1.rst_ │ │ │ ├── api2_c.rst_ │ │ │ ├── api2_d.rst_ │ │ │ ├── api2_go.rst_ │ │ │ ├── api2_haskell.rst_ │ │ │ ├── api2_java.rst_ │ │ │ ├── api2_js.rst_ │ │ │ ├── api2_ocaml.rst_ │ │ │ ├── api2_python.rst_ │ │ │ ├── api2_rust.rst_ │ │ │ ├── api2_swift.rst_ │ │ │ ├── api2_v.rst_ │ │ │ ├── api2_zig.rst_ │ │ │ └── api3.rst_ │ │ ├── blocks.rst_ │ │ ├── configurations.rst_ │ │ ├── directives.rst_ │ │ ├── options │ │ │ ├── debug.rst_ │ │ │ ├── internal.rst_ │ │ │ └── options.rst_ │ │ ├── regular_expressions.rst_ │ │ ├── syntax.rst_ │ │ ├── syntax_files.rst_ │ │ └── warnings │ │ │ ├── warnings_general.rst_ │ │ │ └── warnings_list.rst_ │ ├── eof │ │ ├── 01_sentinel.rst_ │ │ ├── 02_bounds_checking.rst_ │ │ ├── 03_eof_rule.rst_ │ │ ├── 04_fake_sentinel.rst_ │ │ └── eof.rst_ │ ├── features │ │ ├── conditions │ │ │ ├── blocks.rst_ │ │ │ └── conditions.rst_ │ │ ├── dot │ │ │ └── dot.rst_ │ │ ├── encodings │ │ │ └── encodings.rst_ │ │ ├── headers │ │ │ └── headers.rst_ │ │ ├── includes │ │ │ └── includes.rst_ │ │ ├── reuse │ │ │ └── reuse.rst_ │ │ ├── skeleton │ │ │ └── skeleton.rst_ │ │ ├── state │ │ │ └── state.rst_ │ │ └── submatch │ │ │ ├── submatch.rst_ │ │ │ ├── submatch_example_captures.rst_ │ │ │ ├── submatch_example_mtags.rst_ │ │ │ ├── submatch_example_stags.rst_ │ │ │ └── submatch_example_stags_fill.rst_ │ ├── fill │ │ ├── 01_fill.rst_ │ │ ├── 02_fill.rst_ │ │ └── fill.rst_ │ ├── intro.rst_ │ └── synopsis.rst_ └── papers │ ├── .gitignore │ ├── 2017_tagged_deterministic_finite_automata_with_lookahead │ ├── 2017_trofimovich_tagged_deterministic_finite_automata_with_lookahead.tex │ ├── __mk.sh │ ├── bench │ │ ├── __mk.sh │ │ ├── data │ │ └── plot.gnuplot │ ├── bibliography.bib │ └── img │ │ ├── bench_size_gcc_clang.png │ │ ├── bench_size_tcc_pcc.png │ │ ├── bench_time_gcc_clang.png │ │ ├── bench_time_tcc_pcc.png │ │ ├── example1_all.png │ │ ├── example2_all.png │ │ ├── example3_all.png │ │ ├── example4_all.png │ │ ├── example5_all.png │ │ ├── example6_all.png │ │ ├── fallback_tdfa0.png │ │ ├── fallback_tdfa0_fallback.png │ │ ├── fallback_tdfa0_raw.png │ │ ├── fallback_tdfa1.png │ │ ├── fallback_tdfa1_fallback.png │ │ ├── fallback_tdfa1_raw.png │ │ ├── fallback_tnfa.png │ │ ├── plot_acyc_neg_both.png │ │ ├── plot_grid_nhard_both.png │ │ ├── tnfa_concat.png │ │ ├── tnfa_repeat_bound.png │ │ ├── tnfa_repeat_unbound.png │ │ └── tnfa_union.png │ ├── 2019_efficient_posix_submatch_extraction_on_nfa │ ├── .gitignore │ ├── 2019_borsotti_trofimovich_efficient_posix_submatch_extraction_on_nfa.tex │ ├── Makefile │ ├── WileyNJD-v2.cls │ ├── bench │ │ ├── data │ │ ├── log │ │ └── log_to_plot_data.sh │ ├── img │ │ ├── Makefile │ │ ├── mark_and_enum.tex │ │ ├── parenthesized_expressions.tex │ │ ├── parenthesized_expressions_2.tex │ │ ├── tnfa_construction.tex │ │ └── tnfa_example.tex │ ├── proof-at-the-end.sty │ └── xparse.sty │ ├── 2020_re2c_a_lexer_generator_based_on_lookahead_tdfa │ ├── 2020_trofimovich_re2c_a_lexer_generator_based_on_lookahead_tdfa.tex │ ├── Makefile │ ├── elsarticle.cls │ └── example.tex │ └── 2022_a_closer_look_at_tdfa │ ├── 2022_borsotti_trofimovich_a_closer_look_at_tdfa.tex │ ├── Makefile │ └── img │ ├── Makefile │ ├── __get_benchmark_results.sh │ ├── benchmark_dfa_aot_alt.tex │ ├── benchmark_dfa_aot_cat.tex │ ├── benchmark_dfa_aot_main.tex │ ├── benchmark_dfa_aot_rep.tex │ ├── benchmark_dfa_jit.tex │ ├── benchmark_java_dense.tex │ ├── benchmark_java_sparse.tex │ ├── benchmarks │ ├── dfa_aot │ │ ├── results_20220224_alt.json │ │ ├── results_20220224_cat.json │ │ ├── results_20220224_main.json │ │ └── results_20220224_rep.json │ └── dfa_jit │ │ └── results_20220310.json │ ├── tdfa_construction.tex │ ├── tdfa_multipass.tex │ ├── tdfa_optimized.tex │ ├── tdfa_opttagfix.tex │ └── tnfa_construction.tex ├── examples ├── c │ ├── 01_basic.c │ ├── 01_basic.re │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.c │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.c │ │ └── parse_u32_conditions.re │ ├── encodings │ │ ├── unicode_identifier.c │ │ └── unicode_identifier.re │ ├── eof │ │ ├── 01_sentinel.c │ │ ├── 01_sentinel.re │ │ ├── 02_bounds_checking.c │ │ ├── 02_bounds_checking.re │ │ ├── 03_eof_rule.c │ │ ├── 03_eof_rule.re │ │ ├── 04_fake_sentinel.c │ │ ├── 04_fake_sentinel.re │ │ ├── 05_fake_sentinel_eof_rule.c │ │ └── 05_fake_sentinel_eof_rule.re │ ├── fill │ │ ├── 01_fill.c │ │ ├── 01_fill.re │ │ ├── 02_fill.c │ │ └── 02_fill.re │ ├── generic_api │ │ ├── ifstream.c │ │ └── ifstream.re │ ├── headers │ │ ├── header.c │ │ ├── header.re │ │ └── lexer │ │ │ └── state.h │ ├── includes │ │ ├── definitions.h │ │ ├── extra_rules.re.inc │ │ ├── include.c │ │ └── include.re │ ├── real_world │ │ ├── cxx98.c │ │ └── cxx98.re │ ├── reuse │ │ ├── braille.c │ │ ├── braille.re │ │ ├── braille.ucs2.txt │ │ ├── braille.utf16.txt │ │ ├── braille.utf32.txt │ │ ├── braille.utf8.txt │ │ ├── reuse.c │ │ ├── reuse.re │ │ ├── usedir.c │ │ └── usedir.re │ ├── state │ │ ├── push.c │ │ └── push.re │ └── submatch │ │ ├── 01_stags.c │ │ ├── 01_stags.re │ │ ├── 01_stags_fill.c │ │ ├── 01_stags_fill.re │ │ ├── 02_mtags.c │ │ ├── 02_mtags.re │ │ ├── 03_captures.c │ │ ├── 03_captures.re │ │ ├── 04_posix_captures.c │ │ ├── 04_posix_captures.re │ │ ├── http_rfc7230.c │ │ ├── http_rfc7230.re │ │ ├── parse_etc_passwd.c │ │ ├── parse_etc_passwd.re │ │ ├── parse_options.c │ │ ├── parse_options.re │ │ ├── parse_records.c │ │ ├── parse_records.re │ │ ├── uri_rfc3986.c │ │ └── uri_rfc3986.re ├── d │ ├── 01_basic.d │ ├── 01_basic.re │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.d │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.d │ │ └── parse_u32_conditions.re │ ├── encodings │ │ ├── unicode_identifier.d │ │ └── unicode_identifier.re │ ├── eof │ │ ├── 01_sentinel.d │ │ ├── 01_sentinel.re │ │ ├── 02_bounds_checking.d │ │ ├── 02_bounds_checking.re │ │ ├── 03_eof_rule.d │ │ ├── 03_eof_rule.re │ │ ├── 04_fake_sentinel.d │ │ └── 04_fake_sentinel.re │ ├── fill │ │ ├── 01_fill.d │ │ ├── 01_fill.re │ │ ├── 02_fill.d │ │ └── 02_fill.re │ ├── headers │ │ ├── header.d │ │ ├── header.re │ │ └── lexer │ │ │ └── state.d │ ├── includes │ │ ├── definitions.d │ │ ├── extra_rules.re.inc │ │ ├── include.d │ │ └── include.re │ ├── reuse │ │ ├── reuse.d │ │ ├── reuse.re │ │ ├── usedir.d │ │ └── usedir.re │ ├── state │ │ ├── push.d │ │ └── push.re │ └── submatch │ │ ├── 01_stags.d │ │ ├── 01_stags.re │ │ ├── 01_stags_fill.d │ │ ├── 01_stags_fill.re │ │ ├── 02_mtags.d │ │ ├── 02_mtags.re │ │ ├── 03_captures.d │ │ ├── 03_captures.re │ │ ├── 04_posix_captures.d │ │ └── 04_posix_captures.re ├── go │ ├── 01_basic.go │ ├── 01_basic.re │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.go │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.go │ │ └── parse_u32_conditions.re │ ├── encodings │ │ ├── unicode_identifier.go │ │ └── unicode_identifier.re │ ├── eof │ │ ├── 01_sentinel.go │ │ ├── 01_sentinel.re │ │ ├── 02_bounds_checking.go │ │ ├── 02_bounds_checking.re │ │ ├── 03_eof_rule.go │ │ ├── 03_eof_rule.re │ │ ├── 04_fake_sentinel.go │ │ └── 04_fake_sentinel.re │ ├── fill │ │ ├── 01_fill.go │ │ ├── 01_fill.re │ │ ├── 02_fill.go │ │ └── 02_fill.re │ ├── headers │ │ ├── header.go │ │ ├── header.re │ │ └── lexer │ │ │ └── state.go │ ├── includes │ │ ├── definitions.go │ │ ├── extra_rules.re.inc │ │ ├── include.go │ │ └── include.re │ ├── reuse │ │ ├── reuse.go │ │ ├── reuse.re │ │ ├── usedir.go │ │ └── usedir.re │ ├── state │ │ ├── push.go │ │ └── push.re │ └── submatch │ │ ├── 01_stags.go │ │ ├── 01_stags.re │ │ ├── 01_stags_fill.go │ │ ├── 01_stags_fill.re │ │ ├── 02_mtags.go │ │ ├── 02_mtags.re │ │ ├── 03_captures.go │ │ ├── 03_captures.re │ │ ├── 04_posix_captures.go │ │ └── 04_posix_captures.re ├── haskell │ ├── 01_basic.hs │ ├── 01_basic.re │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.hs │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.hs │ │ └── parse_u32_conditions.re │ ├── encodings │ │ ├── unicode_identifier.hs │ │ └── unicode_identifier.re │ ├── eof │ │ ├── 01_sentinel.hs │ │ ├── 01_sentinel.re │ │ ├── 02_bounds_checking.hs │ │ ├── 02_bounds_checking.re │ │ ├── 03_eof_rule.hs │ │ ├── 03_eof_rule.re │ │ ├── 04_fake_sentinel.hs │ │ └── 04_fake_sentinel.re │ ├── fill │ │ ├── 01_fill.hs │ │ ├── 01_fill.re │ │ ├── 02_fill.hs │ │ └── 02_fill.re │ ├── headers │ │ ├── header.hs │ │ ├── header.re │ │ └── lexer │ │ │ └── state.hs │ ├── includes │ │ ├── definitions.hs │ │ ├── extra_rules.re.inc │ │ ├── include.hs │ │ └── include.re │ ├── reuse │ │ ├── reuse.hs │ │ ├── reuse.re │ │ ├── usedir.hs │ │ └── usedir.re │ ├── state │ │ ├── push.hs │ │ └── push.re │ └── submatch │ │ ├── 01_stags.hs │ │ ├── 01_stags.re │ │ ├── 01_stags_fill.hs │ │ ├── 01_stags_fill.re │ │ ├── 02_mtags.hs │ │ ├── 02_mtags.re │ │ ├── 03_captures.hs │ │ └── 03_captures.re ├── java │ ├── 01_basic.java │ ├── 01_basic.re │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.java │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.java │ │ └── parse_u32_conditions.re │ ├── encodings │ │ ├── unicode_identifier.java │ │ └── unicode_identifier.re │ ├── eof │ │ ├── 01_sentinel.java │ │ ├── 01_sentinel.re │ │ ├── 02_bounds_checking.java │ │ ├── 02_bounds_checking.re │ │ ├── 03_eof_rule.java │ │ ├── 03_eof_rule.re │ │ ├── 04_fake_sentinel.java │ │ └── 04_fake_sentinel.re │ ├── fill │ │ ├── 01_fill.java │ │ ├── 01_fill.re │ │ ├── 02_fill.java │ │ └── 02_fill.re │ ├── headers │ │ ├── header.java │ │ ├── header.re │ │ └── lexer │ │ │ └── state.java │ ├── includes │ │ ├── definitions.java │ │ ├── extra_rules.re.inc │ │ ├── include.java │ │ └── include.re │ ├── reuse │ │ ├── reuse.java │ │ ├── reuse.re │ │ ├── usedir.java │ │ └── usedir.re │ ├── state │ │ ├── push.java │ │ └── push.re │ └── submatch │ │ ├── 01_stags.java │ │ ├── 01_stags.re │ │ ├── 01_stags_fill.java │ │ ├── 01_stags_fill.re │ │ ├── 02_mtags.java │ │ ├── 02_mtags.re │ │ ├── 03_captures.java │ │ ├── 03_captures.re │ │ ├── 04_posix_captures.java │ │ └── 04_posix_captures.re ├── js │ ├── 01_basic.js │ ├── 01_basic.re │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.js │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.js │ │ └── parse_u32_conditions.re │ ├── encodings │ │ ├── unicode_identifier.js │ │ └── unicode_identifier.re │ ├── eof │ │ ├── 01_sentinel.js │ │ ├── 01_sentinel.re │ │ ├── 02_bounds_checking.js │ │ ├── 02_bounds_checking.re │ │ ├── 03_eof_rule.js │ │ ├── 03_eof_rule.re │ │ ├── 04_fake_sentinel.js │ │ └── 04_fake_sentinel.re │ ├── fill │ │ ├── 01_fill.js │ │ ├── 01_fill.re │ │ ├── 02_fill.js │ │ └── 02_fill.re │ ├── headers │ │ ├── header.js │ │ ├── header.re │ │ └── lexer │ │ │ └── state.js │ ├── includes │ │ ├── definitions.js │ │ ├── extra_rules.re.inc │ │ ├── include.js │ │ └── include.re │ ├── reuse │ │ ├── reuse.js │ │ ├── reuse.re │ │ ├── usedir.js │ │ └── usedir.re │ ├── state │ │ ├── push.js │ │ └── push.re │ └── submatch │ │ ├── 01_stags.js │ │ ├── 01_stags.re │ │ ├── 01_stags_fill.js │ │ ├── 01_stags_fill.re │ │ ├── 02_mtags.js │ │ ├── 02_mtags.re │ │ ├── 03_captures.js │ │ ├── 03_captures.re │ │ ├── 04_posix_captures.js │ │ └── 04_posix_captures.re ├── ocaml │ ├── 01_basic.ml │ ├── 01_basic.re │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.ml │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.ml │ │ └── parse_u32_conditions.re │ ├── encodings │ │ ├── unicode_identifier.ml │ │ └── unicode_identifier.re │ ├── eof │ │ ├── 01_sentinel.ml │ │ ├── 01_sentinel.re │ │ ├── 02_bounds_checking.ml │ │ ├── 02_bounds_checking.re │ │ ├── 03_eof_rule.ml │ │ ├── 03_eof_rule.re │ │ ├── 04_fake_sentinel.ml │ │ └── 04_fake_sentinel.re │ ├── fill │ │ ├── 01_fill.ml │ │ ├── 01_fill.re │ │ ├── 02_fill.ml │ │ └── 02_fill.re │ ├── headers │ │ ├── header.ml │ │ ├── header.re │ │ └── lexer │ │ │ └── state.ml │ ├── includes │ │ ├── definitions.ml │ │ ├── extra_rules.re.inc │ │ ├── include.ml │ │ └── include.re │ ├── reuse │ │ ├── reuse.ml │ │ ├── reuse.re │ │ ├── usedir.ml │ │ └── usedir.re │ ├── state │ │ ├── push.ml │ │ └── push.re │ └── submatch │ │ ├── 01_stags.ml │ │ ├── 01_stags.re │ │ ├── 01_stags_fill.ml │ │ ├── 01_stags_fill.re │ │ ├── 02_mtags.ml │ │ ├── 02_mtags.re │ │ ├── 03_captures.ml │ │ ├── 03_captures.re │ │ ├── 04_posix_captures.ml │ │ └── 04_posix_captures.re ├── python │ ├── 01_basic.py │ ├── 01_basic.re │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.py │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.py │ │ └── parse_u32_conditions.re │ ├── encodings │ │ ├── unicode_identifier.py │ │ └── unicode_identifier.re │ ├── eof │ │ ├── 01_sentinel.py │ │ ├── 01_sentinel.re │ │ ├── 02_bounds_checking.py │ │ ├── 02_bounds_checking.re │ │ ├── 03_eof_rule.py │ │ ├── 03_eof_rule.re │ │ ├── 04_fake_sentinel.py │ │ └── 04_fake_sentinel.re │ ├── fill │ │ ├── 01_fill.py │ │ ├── 01_fill.re │ │ ├── 02_fill.py │ │ └── 02_fill.re │ ├── headers │ │ ├── header.py │ │ ├── header.re │ │ └── lexer │ │ │ ├── __init__.py │ │ │ └── state.py │ ├── includes │ │ ├── definitions.py │ │ ├── extra_rules.re.inc │ │ ├── include.py │ │ └── include.re │ ├── reuse │ │ ├── reuse.py │ │ ├── reuse.re │ │ ├── usedir.py │ │ └── usedir.re │ ├── state │ │ ├── push.py │ │ └── push.re │ └── submatch │ │ ├── 01_stags.py │ │ ├── 01_stags.re │ │ ├── 01_stags_fill.py │ │ ├── 01_stags_fill.re │ │ ├── 02_mtags.py │ │ ├── 02_mtags.re │ │ ├── 03_captures.py │ │ ├── 03_captures.re │ │ ├── 04_posix_captures.py │ │ └── 04_posix_captures.re ├── rust │ ├── 01_basic.re │ ├── 01_basic.rs │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_blocks.rs │ │ ├── parse_u32_conditions.re │ │ └── parse_u32_conditions.rs │ ├── encodings │ │ ├── unicode_identifier.re │ │ └── unicode_identifier.rs │ ├── eof │ │ ├── 01_sentinel.re │ │ ├── 01_sentinel.rs │ │ ├── 02_bounds_checking.re │ │ ├── 02_bounds_checking.rs │ │ ├── 03_eof_rule.re │ │ ├── 03_eof_rule.rs │ │ ├── 04_fake_sentinel.re │ │ └── 04_fake_sentinel.rs │ ├── fill │ │ ├── 01_fill.re │ │ ├── 01_fill.rs │ │ ├── 02_fill.re │ │ └── 02_fill.rs │ ├── headers │ │ ├── header.re │ │ ├── header.rs │ │ └── lexer │ │ │ ├── mod.rs │ │ │ └── state.rs │ ├── includes │ │ ├── definitions.rs │ │ ├── extra_rules.re.inc │ │ ├── include.re │ │ └── include.rs │ ├── real_world │ │ ├── c.re │ │ └── c.rs │ ├── reuse │ │ ├── reuse.re │ │ ├── reuse.rs │ │ ├── usedir.re │ │ └── usedir.rs │ ├── state │ │ ├── push.re │ │ └── push.rs │ └── submatch │ │ ├── 01_stags.re │ │ ├── 01_stags.rs │ │ ├── 01_stags_fill.re │ │ ├── 01_stags_fill.rs │ │ ├── 02_mtags.re │ │ ├── 02_mtags.rs │ │ ├── 03_captures.re │ │ ├── 03_captures.rs │ │ ├── 04_posix_captures.re │ │ └── 04_posix_captures.rs ├── swift │ ├── 01_basic.re │ ├── 01_basic.swift │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_blocks.swift │ │ ├── parse_u32_conditions.re │ │ └── parse_u32_conditions.swift │ ├── encodings │ │ ├── unicode_identifier.re │ │ └── unicode_identifier.swift │ ├── eof │ │ ├── 01_sentinel.re │ │ ├── 01_sentinel.swift │ │ ├── 02_bounds_checking.re │ │ ├── 02_bounds_checking.swift │ │ ├── 03_eof_rule.re │ │ ├── 03_eof_rule.swift │ │ ├── 04_fake_sentinel.re │ │ ├── 04_fake_sentinel.swift │ │ ├── 05_fake_sentinel_eof_rule.re │ │ └── 05_fake_sentinel_eof_rule.swift │ ├── fill │ │ ├── 01_fill.re │ │ ├── 01_fill.swift │ │ ├── 02_fill.re │ │ └── 02_fill.swift │ ├── headers │ │ ├── header.re │ │ ├── header.swift │ │ └── lexer │ │ │ └── state.swift │ ├── includes │ │ ├── definitions.swift │ │ ├── extra_rules.re.inc │ │ ├── include.re │ │ └── include.swift │ ├── reuse │ │ ├── reuse.re │ │ ├── reuse.swift │ │ ├── usedir.re │ │ └── usedir.swift │ ├── state │ │ ├── push.re │ │ └── push.swift │ └── submatch │ │ ├── 01_stags.re │ │ ├── 01_stags.swift │ │ ├── 01_stags_fill.re │ │ ├── 01_stags_fill.swift │ │ ├── 02_mtags.re │ │ ├── 02_mtags.swift │ │ ├── 03_captures.re │ │ ├── 03_captures.swift │ │ ├── 04_posix_captures.re │ │ └── 04_posix_captures.swift ├── v │ ├── 01_basic.re │ ├── 01_basic.v │ ├── __run_all.sh │ ├── conditions │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_blocks.v │ │ ├── parse_u32_conditions.re │ │ └── parse_u32_conditions.v │ ├── encodings │ │ ├── unicode_identifier.re │ │ └── unicode_identifier.v │ ├── eof │ │ ├── 01_sentinel.re │ │ ├── 01_sentinel.v │ │ ├── 02_bounds_checking.re │ │ ├── 02_bounds_checking.v │ │ ├── 03_eof_rule.re │ │ ├── 03_eof_rule.v │ │ ├── 04_fake_sentinel.re │ │ └── 04_fake_sentinel.v │ ├── fill │ │ ├── 01_fill.re │ │ ├── 01_fill.v │ │ ├── 02_fill.re │ │ └── 02_fill.v │ ├── headers │ │ ├── header.re │ │ ├── header.v │ │ └── lexer │ │ │ └── state.v │ ├── includes │ │ ├── definitions.v │ │ ├── extra_rules.re.inc │ │ ├── include.re │ │ └── include.v │ ├── reuse │ │ ├── reuse.re │ │ ├── reuse.v │ │ ├── usedir.re │ │ └── usedir.v │ ├── state │ │ ├── push.re │ │ └── push.v │ └── submatch │ │ ├── 01_stags.re │ │ ├── 01_stags.v │ │ ├── 01_stags_fill.re │ │ ├── 01_stags_fill.v │ │ ├── 02_mtags.re │ │ ├── 02_mtags.v │ │ ├── 03_captures.re │ │ ├── 03_captures.v │ │ ├── 04_posix_captures.re │ │ └── 04_posix_captures.v └── zig │ ├── 01_basic.re │ ├── 01_basic.zig │ ├── __run_all.sh │ ├── conditions │ ├── parse_u32_blocks.re │ ├── parse_u32_blocks.zig │ ├── parse_u32_conditions.re │ └── parse_u32_conditions.zig │ ├── encodings │ ├── unicode_identifier.re │ └── unicode_identifier.zig │ ├── eof │ ├── 01_sentinel.re │ ├── 01_sentinel.zig │ ├── 02_bounds_checking.re │ ├── 02_bounds_checking.zig │ ├── 03_eof_rule.re │ ├── 03_eof_rule.zig │ ├── 04_fake_sentinel.re │ └── 04_fake_sentinel.zig │ ├── fill │ ├── 01_fill.re │ ├── 01_fill.zig │ ├── 02_fill.re │ └── 02_fill.zig │ ├── headers │ ├── header.re │ ├── header.zig │ └── lexer │ │ └── state.zig │ ├── includes │ ├── definitions.zig │ ├── extra_rules.re.inc │ ├── include.re │ └── include.zig │ ├── reuse │ ├── reuse.re │ ├── reuse.zig │ ├── usedir.re │ └── usedir.zig │ ├── state │ ├── push.re │ └── push.zig │ └── submatch │ ├── 01_stags.re │ ├── 01_stags.zig │ ├── 01_stags_fill.re │ ├── 01_stags_fill.zig │ ├── 02_mtags.re │ ├── 02_mtags.zig │ ├── 03_captures.re │ ├── 03_captures.zig │ ├── 04_posix_captures.re │ └── 04_posix_captures.zig ├── fuzz ├── regex_tdfa │ ├── __mk.sh │ └── check.hs ├── tdfa0_tdfa1 │ ├── __mk.sh │ └── check.hs └── tdfa0_tdfa1_posix │ ├── __mk.sh │ └── check.hs ├── include ├── syntax │ ├── c │ ├── d │ ├── go │ ├── haskell │ ├── java │ ├── js │ ├── ocaml │ ├── python │ ├── rust │ ├── swift │ ├── v │ └── zig └── unicode_categories.re ├── lib ├── lex.h ├── lex.re ├── parse.ypp ├── regcomp.cc ├── regcomp_dfa_multipass.h ├── regex.h ├── regex_impl.h ├── regexec.cc ├── regexec_dfa.cc ├── regexec_dfa_multipass.cc ├── regexec_nfa_leftmost.cc ├── regexec_nfa_leftmost_trie.cc ├── regexec_nfa_posix.cc ├── regexec_nfa_posix_trie.cc ├── regfree.cc ├── regoff_trie.h ├── stubs.cc ├── test.cc ├── test_helper.h └── test_helper.re ├── libre2c_old ├── CHANGES ├── COPYING ├── Doxyfile ├── Makefile ├── README ├── TODO ├── examples │ ├── Makefile │ ├── README │ ├── compare │ │ ├── Makefile │ │ ├── cmpmain.c │ │ ├── compare.c │ │ ├── compare.h │ │ ├── test │ │ │ ├── 10-noargs.test │ │ │ ├── 11-oneargs.test │ │ │ ├── 20-plain.test │ │ │ ├── 21-twofiles.test │ │ │ ├── 22-nomatch.test │ │ │ ├── 30-nonl1.test │ │ │ ├── 30-nonl2.test │ │ │ ├── 31-lessnl1.test │ │ │ ├── 31-lessnl2.test │ │ │ ├── 40-brief.test │ │ │ ├── 41-b-nonl1.test │ │ │ ├── 41-b-nonl2.test │ │ │ ├── 42-b-lessnl1.test │ │ │ ├── 42-b-lessnl2.test │ │ │ └── README │ │ └── tmtest.conf │ ├── numscan-coupled │ │ ├── Makefile │ │ ├── numscan.re │ │ └── numscan.test │ ├── numscan-modular │ │ ├── Makefile │ │ ├── modnumparser.c │ │ ├── modnumscanner.h │ │ ├── modnumscanner.re │ │ └── test │ │ │ ├── data.test │ │ │ ├── empty.test │ │ │ ├── newline.test │ │ │ └── tmtest.conf │ ├── skeleton │ │ ├── Makefile │ │ ├── main.c │ │ ├── scanner.h │ │ └── scanner.re │ └── startstate │ │ ├── Makefile │ │ ├── comtest │ │ ├── cparse.c │ │ ├── cscan.h │ │ └── cscan.re ├── libre2c │ ├── read.c │ ├── read.h │ ├── readfd.c │ ├── readfd.h │ ├── readfp.c │ ├── readfp.h │ ├── readmem.c │ ├── readmem.h │ ├── readrand.c │ ├── readrand.h │ ├── scan-dyn.c │ ├── scan-dyn.h │ ├── scan.c │ └── scan.h ├── mainpage.c └── test │ ├── Makefile │ ├── README │ ├── retest.c │ ├── retest.h │ ├── tester.c │ ├── zutest.c │ └── zutest.h ├── release.sh ├── run_tests.py.in ├── sf-cheatsheet ├── src ├── adfa │ ├── adfa.cc │ └── adfa.h ├── cfg │ ├── cfg.cc │ ├── cfg.h │ ├── compact.cc │ ├── dce.cc │ ├── freeze.cc │ ├── interfere.cc │ ├── liveanal.cc │ ├── normalize.cc │ ├── optimize.cc │ ├── rename.cc │ └── varalloc.cc ├── codegen │ ├── code.h │ ├── helpers.cc │ ├── helpers.h │ ├── output.cc │ ├── output.h │ ├── pass1_analyze.cc │ ├── pass2_generate.cc │ ├── pass3_fixup.cc │ └── pass4_render.cc ├── constants.h ├── debug │ ├── debug.h │ ├── dump_adfa.cc │ ├── dump_cfg.cc │ ├── dump_dfa.cc │ ├── dump_dfa_tree.cc │ ├── dump_interf.cc │ └── dump_nfa.cc ├── dfa │ ├── closure.cc │ ├── closure_leftmost.h │ ├── closure_posix.h │ ├── dead_rules.cc │ ├── determinization.cc │ ├── determinization.h │ ├── dfa.h │ ├── fallback_tags.cc │ ├── fillpoints.cc │ ├── find_state.cc │ ├── minimization.cc │ ├── posix_precedence.h │ ├── tag_history.h │ ├── tagver_table.cc │ ├── tagver_table.h │ ├── tcmd.cc │ └── tcmd.h ├── encoding │ ├── ebcdic.cc │ ├── ebcdic.h │ ├── enc.cc │ ├── enc.h │ ├── range_suffix.cc │ ├── range_suffix.h │ ├── utf16.cc │ ├── utf16.h │ ├── utf8.cc │ └── utf8.h ├── main.cc ├── msg │ ├── location.h │ ├── msg.cc │ ├── msg.h │ ├── ver_to_vernum.h │ ├── ver_to_vernum.re │ ├── warn.cc │ └── warn.h ├── nfa │ ├── nfa.h │ └── re_to_nfa.cc ├── options │ ├── opt.cc │ ├── opt.h │ ├── parse_opts.re │ ├── symtab.cc │ └── symtab.h ├── parse │ ├── ast.cc │ ├── ast.h │ ├── conf_lexer.re │ ├── conf_parser.ypp │ ├── input.cc │ ├── input.h │ ├── lexer.re │ └── parser.ypp ├── regexp │ ├── ast_to_re.cc │ ├── default_tags.cc │ ├── fixed_tags.cc │ ├── nullable.cc │ ├── regexp.cc │ ├── regexp.h │ ├── rule.h │ ├── split_charset.cc │ └── tag.h ├── skeleton │ ├── control_flow.cc │ ├── generate_code.cc │ ├── generate_data.cc │ ├── maxpath.cc │ ├── mtag_trie.h │ ├── path.h │ ├── skeleton.cc │ └── skeleton.h ├── test │ ├── argsubst │ │ └── test.cc │ ├── list │ │ └── test.cc │ ├── range │ │ ├── test-impl.h │ │ ├── test.cc │ │ └── test.h │ ├── s_to_n32_unsafe │ │ └── test.cc │ └── ver_to_vernum │ │ └── test.cc └── util │ ├── allocator.h │ ├── attribute.h │ ├── check.h │ ├── containers.h │ ├── file_utils.cc │ ├── file_utils.h │ ├── forbid_copy.h │ ├── hash32.h │ ├── nowarn_in_bison.h │ ├── range.cc │ ├── range.h │ ├── string_utils.cc │ ├── string_utils.h │ └── u32lim.h └── test ├── __run_unicode_tests.sh ├── actions ├── error_multiple_entry.c ├── error_multiple_entry.re ├── error_multiple_entry_cond.c ├── error_multiple_entry_cond.re ├── error_multiple_post_rule.c ├── error_multiple_post_rule.re ├── error_multiple_post_rule_cond.c ├── error_multiple_post_rule_cond.re ├── error_multiple_pre_rule.c ├── error_multiple_pre_rule.re ├── error_multiple_pre_rule_cond_1.c ├── error_multiple_pre_rule_cond_1.re ├── error_multiple_pre_rule_cond_2.c ├── error_multiple_pre_rule_cond_2.re ├── error_unused_star_entry.c ├── error_unused_star_entry.re ├── error_unused_star_post_rule.c ├── error_unused_star_post_rule.re ├── error_unused_star_pre_rule.c ├── error_unused_star_pre_rule.re ├── special_actions_goto_label.c ├── special_actions_goto_label.re ├── special_actions_goto_label_f.c ├── special_actions_goto_label_f.re ├── special_actions_loop_switch.c ├── special_actions_loop_switch.re ├── special_actions_loop_switch_f.c ├── special_actions_loop_switch_f.re ├── special_actions_rec_func.c ├── special_actions_rec_func.re ├── special_actions_rec_func_f.c ├── special_actions_rec_func_f.re ├── special_actions_with_eof_rule_goto_label.c ├── special_actions_with_eof_rule_goto_label.re ├── special_actions_with_eof_rule_loop_switch.c ├── special_actions_with_eof_rule_loop_switch.re ├── special_actions_with_eof_rule_rec_func.c └── special_actions_with_eof_rule_rec_func.re ├── american_fuzzy_lop ├── 001.c ├── 001.re ├── 002.c ├── 002.re ├── 003.c ├── 003.re ├── 004.c ├── 004.re ├── 005.c ├── 005.re ├── 006.c ├── 006.re ├── 007.c ├── 007.re ├── 008.c ├── 008.re ├── 009.c ├── 009.re ├── 010.c └── 010.re ├── bug1054496.c ├── bug1054496.re ├── bug116.c ├── bug116.re ├── bug1163046.c ├── bug1163046.re ├── bug1187785.c ├── bug1187785.re ├── bug119.c ├── bug119.re ├── bug119_abort.c ├── bug119_abort.re ├── bug119_abort_bif.c ├── bug119_abort_bif.re ├── bug119_abort_if.c ├── bug119_abort_if.re ├── bug119_gif.c ├── bug119_gif.re ├── bug119_if.c ├── bug119_if.re ├── bug128.c ├── bug128.re ├── bug1297658.c ├── bug1297658.re ├── bug1390174.c ├── bug1390174.re ├── bug142.c ├── bug142.re ├── bug145.c ├── bug145.re ├── bug1454253.c ├── bug1454253.re ├── bug1454253_s.c ├── bug1454253_s.re ├── bug1454253b.c ├── bug1454253b.re ├── bug147.c ├── bug147.re ├── bug1472770.c ├── bug1472770.re ├── bug1472770_b.c ├── bug1472770_b.re ├── bug1472770_f.c ├── bug1472770_f.re ├── bug1472770_s.c ├── bug1472770_s.re ├── bug1479044.c ├── bug1479044.re ├── bug1479044_b.c ├── bug1479044_b.re ├── bug1479044_s.c ├── bug1479044_s.re ├── bug152.c ├── bug152.re ├── bug1528269.c ├── bug1528269.re ├── bug1529351.c ├── bug1529351.re ├── bug1682718.c ├── bug1682718.re ├── bug1682718_is.c ├── bug1682718_is.re ├── bug1708378.c ├── bug1708378.re ├── bug2102138.c ├── bug2102138.re ├── bug2462777.c ├── bug2462777.re ├── bug2462777_i.c ├── bug2462777_i.re ├── bug46_infinite_loop.c ├── bug46_infinite_loop.re ├── bug57.c ├── bug57.re ├── bug57_original.c ├── bug57_original.re ├── bug59_bogus_yyaccept.c ├── bug59_bogus_yyaccept.re ├── bug60_redundant_yymarker.c ├── bug60_redundant_yymarker.re ├── bug61.c ├── bug61.re ├── bug61_difference_full.c ├── bug61_difference_full.re ├── bug61_difference_full_i.c ├── bug61_difference_full_i.re ├── bug61_difference_full_i_empty_class_error.c ├── bug61_difference_full_i_empty_class_error.re ├── bug61_difference_full_i_empty_class_match_none.c ├── bug61_difference_full_i_empty_class_match_none.re ├── bug61_difference_negative.c ├── bug61_difference_negative.re ├── bug61_difference_negative_i.c ├── bug61_difference_negative_i.re ├── bug61_difference_negative_i_empty_class_error.c ├── bug61_difference_negative_i_empty_class_error.re ├── bug61_difference_negative_i_empty_class_match_empty.c ├── bug61_difference_negative_i_empty_class_match_empty.re ├── bug61_difference_positive.c ├── bug61_difference_positive.re ├── bug61_difference_positive_i.c ├── bug61_difference_positive_i.re ├── bug61_difference_positive_i_empty_class_error.c ├── bug61_difference_positive_i_empty_class_error.re ├── bug61_difference_positive_i_empty_class_match_none.c ├── bug61_difference_positive_i_empty_class_match_none.re ├── bug61_i.c ├── bug61_i.re ├── bug61_i_empty_class_match_empty.c ├── bug61_i_empty_class_match_empty.re ├── bug61_i_empty_class_match_none.c ├── bug61_i_empty_class_match_none.re ├── bug61_i_empty_class_match_none_eager_skip.c ├── bug61_i_empty_class_match_none_eager_skip.re ├── bug61_negative.c ├── bug61_negative.re ├── bug61_negative_i_empty_class_error.c ├── bug61_negative_i_empty_class_error.re ├── bug61_negative_i_empty_class_match_empty.c ├── bug61_negative_i_empty_class_match_empty.re ├── bug61_negative_i_empty_class_match_none.c ├── bug61_negative_i_empty_class_match_none.re ├── bug61_positive.c ├── bug61_positive.re ├── bug61_positive_i_empty_class_error.c ├── bug61_positive_i_empty_class_error.re ├── bug61_positive_i_empty_class_match_empty.c ├── bug61_positive_i_empty_class_match_empty.re ├── bug61_positive_i_empty_class_match_none.c ├── bug61_positive_i_empty_class_match_none.re ├── calc_001.c ├── calc_001.re ├── calc_002.c ├── calc_002.re ├── calc_003.c ├── calc_003.re ├── calc_004.c ├── calc_004.re ├── calc_005.c ├── calc_005.re ├── calc_006.c ├── calc_006.re ├── calc_007.c ├── calc_007.re ├── calc_008.c ├── calc_008.re ├── captures ├── closure1_leftmost.c ├── closure1_leftmost.re ├── closure1_posix.c ├── closure1_posix.re ├── closure2_leftmost.c ├── closure2_leftmost.re ├── closure2_posix.c ├── closure2_posix.re ├── closure3_leftmost.c ├── closure3_leftmost.re ├── closure3_posix.c ├── closure3_posix.re ├── closure4_leftmost.c ├── closure4_leftmost.re ├── closure4_posix.c ├── closure4_posix.re ├── diff1_leftmost.c ├── diff1_leftmost.re ├── diff1_posix.c ├── diff1_posix.re ├── noncapturing │ ├── explicit2_leftmost.c │ ├── explicit2_leftmost.re │ ├── explicit2_leftmost_inverted.c │ ├── explicit2_leftmost_inverted.re │ ├── explicit2_posix.c │ ├── explicit2_posix.re │ ├── explicit3_leftmost.c │ ├── explicit3_leftmost.re │ ├── explicit3_posix.c │ ├── explicit3_posix.re │ ├── explicit3_posix_inverted.c │ ├── explicit3_posix_inverted.re │ ├── explicit4_leftmost.c │ ├── explicit4_leftmost.re │ ├── explicit4_posix.c │ ├── explicit4_posix.re │ ├── implicit1_leftmost.c │ ├── implicit1_leftmost.re │ ├── implicit1_posix.c │ ├── implicit1_posix.re │ ├── implicit2_leftmost.c │ ├── implicit2_leftmost.re │ ├── implicit2_posix.c │ ├── implicit2_posix.re │ ├── implicit3_leftmost.c │ ├── implicit3_leftmost.re │ ├── implicit3_posix.c │ ├── implicit3_posix.re │ ├── implicit4_leftmost.c │ ├── implicit4_leftmost.re │ ├── implicit4_posix.c │ ├── implicit4_posix.re │ ├── invert_captures.c │ └── invert_captures.re ├── posix │ ├── .dat │ │ ├── basic.dat │ │ ├── categorize.dat │ │ ├── forcedassoc.dat │ │ ├── glennfowler.dat │ │ ├── nullsubexpr.dat │ │ ├── osxbsdcritical.dat │ │ ├── other.dat │ │ ├── repetition.dat │ │ └── rightassoc.dat │ ├── .gen │ │ ├── __gen.sh │ │ └── template │ ├── .run │ │ ├── __run.sh │ │ └── template │ ├── basic │ │ ├── 01.c │ │ ├── 01.re │ │ ├── 02.c │ │ ├── 02.re │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 07.c │ │ ├── 07.re │ │ ├── 08.c │ │ ├── 08.re │ │ ├── 09.c │ │ ├── 09.re │ │ ├── 10.c │ │ ├── 10.re │ │ ├── 11.c │ │ ├── 11.re │ │ ├── 12.c │ │ ├── 12.re │ │ ├── 14.c │ │ ├── 14.re │ │ ├── 15.c │ │ ├── 15.re │ │ ├── 16.c │ │ ├── 16.re │ │ ├── 17.c │ │ ├── 17.re │ │ ├── 18.c │ │ ├── 18.re │ │ ├── 19.c │ │ ├── 19.re │ │ ├── 20.c │ │ ├── 20.re │ │ ├── 21.c │ │ ├── 21.re │ │ ├── 22.c │ │ ├── 22.re │ │ ├── 23.c │ │ ├── 23.re │ │ ├── 24.c │ │ ├── 24.re │ │ ├── 25.c │ │ ├── 25.re │ │ ├── 26.c │ │ ├── 26.re │ │ ├── 28.c │ │ ├── 28.re │ │ ├── 30.c │ │ ├── 30.re │ │ ├── 31.c │ │ ├── 31.re │ │ ├── 33.c │ │ ├── 33.re │ │ ├── 34.c │ │ ├── 34.re │ │ ├── 35.c │ │ ├── 35.re │ │ ├── 36.c │ │ ├── 36.re │ │ ├── 37.c │ │ ├── 37.re │ │ ├── 38.c │ │ ├── 38.re │ │ ├── 39.c │ │ ├── 39.re │ │ ├── 40.c │ │ ├── 40.re │ │ ├── 41.c │ │ ├── 41.re │ │ ├── 42.c │ │ ├── 42.re │ │ ├── 43.c │ │ ├── 43.re │ │ ├── 44.c │ │ ├── 44.re │ │ ├── 45.c │ │ ├── 45.re │ │ ├── 46.c │ │ ├── 46.re │ │ ├── 47.c │ │ ├── 47.re │ │ ├── 48.c │ │ ├── 48.re │ │ ├── 49.c │ │ ├── 49.re │ │ ├── 50.c │ │ ├── 50.re │ │ ├── 51.c │ │ ├── 51.re │ │ ├── 52.c │ │ ├── 52.re │ │ ├── 53.c │ │ ├── 53.re │ │ ├── 54.c │ │ ├── 54.re │ │ ├── 55.c │ │ ├── 55.re │ │ ├── 56.c │ │ ├── 56.re │ │ ├── 57.c │ │ ├── 57.re │ │ ├── 58.c │ │ ├── 58.re │ │ ├── 59.c │ │ └── 59.re │ ├── categorize │ │ ├── 01.c │ │ ├── 01.re │ │ ├── 02.c │ │ ├── 02.re │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 08.c │ │ ├── 08.re │ │ ├── 09.c │ │ ├── 09.re │ │ ├── 10.c │ │ ├── 10.re │ │ ├── 11.c │ │ └── 11.re │ ├── forcedassoc │ │ ├── 01.c │ │ ├── 01.re │ │ ├── 02.c │ │ ├── 02.re │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 07.c │ │ ├── 07.re │ │ ├── 08.c │ │ ├── 08.re │ │ ├── 09.c │ │ ├── 09.re │ │ ├── 10.c │ │ ├── 10.re │ │ ├── 11.c │ │ ├── 11.re │ │ ├── 12.c │ │ ├── 12.re │ │ ├── 13.c │ │ ├── 13.re │ │ ├── 14.c │ │ ├── 14.re │ │ ├── 15.c │ │ ├── 15.re │ │ ├── 16.c │ │ ├── 16.re │ │ ├── 17.c │ │ ├── 17.re │ │ ├── 18.c │ │ ├── 18.re │ │ ├── 25.c │ │ ├── 25.re │ │ ├── 26.c │ │ ├── 26.re │ │ ├── 27.c │ │ ├── 27.re │ │ ├── 28.c │ │ └── 28.re │ ├── glennfowler │ │ ├── 01.c │ │ ├── 01.re │ │ ├── 02.c │ │ ├── 02.re │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 07.c │ │ ├── 07.re │ │ ├── 08.c │ │ ├── 08.re │ │ ├── 09.c │ │ ├── 09.re │ │ ├── 10.c │ │ ├── 10.re │ │ ├── 11.c │ │ ├── 11.re │ │ ├── 12.c │ │ ├── 12.re │ │ ├── 13.c │ │ ├── 13.re │ │ ├── 14.c │ │ ├── 14.re │ │ ├── 15.c │ │ ├── 15.re │ │ ├── 16.c │ │ ├── 16.re │ │ ├── 17.c │ │ ├── 17.re │ │ ├── 18.c │ │ ├── 18.re │ │ ├── 19.c │ │ ├── 19.re │ │ ├── 21.c │ │ ├── 21.re │ │ ├── 22.c │ │ ├── 22.re │ │ ├── 23.c │ │ ├── 23.re │ │ ├── 24.c │ │ ├── 24.re │ │ ├── 25.c │ │ ├── 25.re │ │ ├── 26.c │ │ ├── 26.re │ │ ├── 28.c │ │ ├── 28.re │ │ ├── 30.c │ │ ├── 30.re │ │ ├── 31.c │ │ ├── 31.re │ │ ├── 32.c │ │ ├── 32.re │ │ ├── 33.c │ │ ├── 33.re │ │ ├── 34.c │ │ ├── 34.re │ │ ├── 35.c │ │ ├── 35.re │ │ ├── 37.c │ │ ├── 37.re │ │ ├── 39.c │ │ ├── 39.re │ │ ├── 40.c │ │ ├── 40.re │ │ ├── 41.c │ │ ├── 41.re │ │ ├── 42.c │ │ ├── 42.re │ │ ├── 43.c │ │ ├── 43.re │ │ ├── 44.c │ │ ├── 44.re │ │ ├── 45.c │ │ └── 45.re │ ├── nullsubexpr │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 07.c │ │ ├── 07.re │ │ ├── 08.c │ │ ├── 08.re │ │ ├── 09.c │ │ ├── 09.re │ │ ├── 10.c │ │ ├── 10.re │ │ ├── 11.c │ │ ├── 11.re │ │ ├── 12.c │ │ ├── 12.re │ │ ├── 13.c │ │ ├── 13.re │ │ ├── 16.c │ │ ├── 16.re │ │ ├── 19.c │ │ └── 19.re │ ├── osxbsdcritical │ │ ├── 01.c │ │ ├── 01.re │ │ ├── 02.c │ │ ├── 02.re │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 07.c │ │ └── 07.re │ ├── other │ │ ├── 01.c │ │ ├── 01.re │ │ ├── 02.c │ │ ├── 02.re │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 07.c │ │ ├── 07.re │ │ ├── 08.c │ │ ├── 08.re │ │ ├── 09.c │ │ ├── 09.re │ │ ├── 10.c │ │ ├── 10.re │ │ ├── 11.c │ │ ├── 11.re │ │ ├── 12.c │ │ ├── 12.re │ │ ├── 13.c │ │ ├── 13.re │ │ ├── 14.c │ │ ├── 14.re │ │ ├── 15.c │ │ ├── 15.re │ │ ├── 16.c │ │ ├── 16.re │ │ ├── 17.c │ │ ├── 17.re │ │ ├── 18.c │ │ ├── 18.re │ │ ├── 19.c │ │ ├── 19.re │ │ ├── 20.c │ │ ├── 20.re │ │ ├── 21.c │ │ ├── 21.re │ │ ├── 22.c │ │ ├── 22.re │ │ ├── 23.c │ │ ├── 23.re │ │ ├── 24.c │ │ ├── 24.re │ │ ├── 25.c │ │ ├── 25.re │ │ ├── 26.c │ │ ├── 26.re │ │ ├── 27.c │ │ ├── 27.re │ │ ├── 28.c │ │ ├── 28.re │ │ ├── 29.c │ │ └── 29.re │ ├── repetition │ │ ├── 01.c │ │ ├── 01.re │ │ ├── 02.c │ │ ├── 02.re │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 07.c │ │ ├── 07.re │ │ ├── 50.c │ │ ├── 50.re │ │ ├── 51.c │ │ ├── 51.re │ │ ├── 52.c │ │ ├── 52.re │ │ ├── 53.c │ │ ├── 53.re │ │ ├── 54.c │ │ ├── 54.re │ │ ├── 55.c │ │ ├── 55.re │ │ ├── 56.c │ │ ├── 56.re │ │ ├── 57.c │ │ ├── 57.re │ │ ├── 58.c │ │ ├── 58.re │ │ ├── 59.c │ │ ├── 59.re │ │ ├── 60.c │ │ ├── 60.re │ │ ├── 61.c │ │ ├── 61.re │ │ ├── 62.c │ │ ├── 62.re │ │ ├── 63.c │ │ ├── 63.re │ │ ├── 64.c │ │ ├── 64.re │ │ ├── 65.c │ │ ├── 65.re │ │ ├── 66.c │ │ ├── 66.re │ │ ├── 67.c │ │ ├── 67.re │ │ ├── 68.c │ │ ├── 68.re │ │ ├── 69.c │ │ ├── 69.re │ │ ├── 70.c │ │ ├── 70.re │ │ ├── 71.c │ │ ├── 71.re │ │ ├── 72.c │ │ ├── 72.re │ │ ├── 73.c │ │ ├── 73.re │ │ ├── 74.c │ │ ├── 74.re │ │ ├── 75.c │ │ ├── 75.re │ │ ├── 76.c │ │ ├── 76.re │ │ ├── 77.c │ │ ├── 77.re │ │ ├── 78.c │ │ ├── 78.re │ │ ├── 79.c │ │ ├── 79.re │ │ ├── 80.c │ │ ├── 80.re │ │ ├── 81.c │ │ ├── 81.re │ │ ├── 82.c │ │ ├── 82.re │ │ ├── 83.c │ │ ├── 83.re │ │ ├── 84.c │ │ ├── 84.re │ │ ├── 85.c │ │ ├── 85.re │ │ ├── 86.c │ │ ├── 86.re │ │ ├── 87.c │ │ ├── 87.re │ │ ├── 88.c │ │ ├── 88.re │ │ ├── 89.c │ │ ├── 89.re │ │ ├── 90.c │ │ ├── 90.re │ │ ├── 91.c │ │ └── 91.re │ └── rightassoc │ │ ├── 01.c │ │ ├── 01.re │ │ ├── 02.c │ │ ├── 02.re │ │ ├── 03.c │ │ ├── 03.re │ │ ├── 04.c │ │ ├── 04.re │ │ ├── 05.c │ │ ├── 05.re │ │ ├── 06.c │ │ ├── 06.re │ │ ├── 09.c │ │ ├── 09.re │ │ ├── 10.c │ │ ├── 10.re │ │ ├── 11.c │ │ ├── 11.re │ │ ├── 12.c │ │ └── 12.re ├── same1_leftmost.c ├── same1_leftmost.re ├── same1_posix.c ├── same1_posix.re ├── same2_leftmost.c ├── same2_leftmost.re ├── same2_posix.c ├── same2_posix.re ├── skeleton_max_path.c └── skeleton_max_path.re ├── casing-flags.c ├── casing-flags.re ├── casing-flags_i.c ├── casing-flags_i.re ├── casing-flags_i_case_inverted.c ├── casing-flags_i_case_inverted.re ├── codegen ├── c │ ├── __run_all.sh │ ├── case_ranges.c │ ├── case_ranges.re │ ├── loop_switch │ │ ├── advanced.c │ │ ├── advanced.re │ │ ├── basic.c │ │ ├── basic.re │ │ ├── bounds_checking.c │ │ ├── bounds_checking.re │ │ ├── eof_rule.c │ │ ├── eof_rule.re │ │ ├── fill_1.c │ │ ├── fill_1.re │ │ ├── fill_2.c │ │ ├── fill_2.re │ │ ├── generic_api_eof_rule.c │ │ ├── generic_api_eof_rule.re │ │ ├── generic_api_sentinel.c │ │ ├── generic_api_sentinel.re │ │ ├── parse_u32_blocks.c │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.c │ │ ├── parse_u32_conditions.re │ │ ├── reuse.c │ │ ├── reuse.re │ │ ├── sentinel.c │ │ ├── sentinel.re │ │ ├── storable_state.c │ │ ├── storable_state.re │ │ ├── storable_state_error_getstate.c │ │ ├── storable_state_error_getstate.re │ │ ├── storable_state_two_blocks.c │ │ └── storable_state_two_blocks.re │ ├── nested_fixed_tags.c │ ├── nested_fixed_tags.re │ ├── recursive_functions │ │ ├── advanced.c │ │ ├── advanced.re │ │ ├── basic.c │ │ ├── basic.re │ │ ├── bounds_checking.c │ │ ├── bounds_checking.re │ │ ├── eof_rule.c │ │ ├── eof_rule.re │ │ ├── fill_1.c │ │ ├── fill_1.re │ │ ├── fill_2.c │ │ ├── fill_2.re │ │ ├── parse_u32_blocks.c │ │ ├── parse_u32_blocks.re │ │ ├── parse_u32_conditions.c │ │ ├── parse_u32_conditions.re │ │ ├── reuse.c │ │ ├── reuse.re │ │ ├── sentinel.c │ │ ├── sentinel.re │ │ ├── storable_state.c │ │ ├── storable_state.re │ │ ├── storable_state_getstate.c │ │ ├── storable_state_getstate.re │ │ ├── storable_state_two_blocks.c │ │ └── storable_state_two_blocks.re │ ├── signed_yyctype.c │ ├── signed_yyctype.re │ ├── special_escapes.c │ ├── special_escapes.re │ ├── standalone_single_quotes.c │ ├── standalone_single_quotes.re │ ├── unsupported_monadic.c │ ├── unsupported_monadic.re │ ├── unsupported_unsafe.c │ └── unsupported_unsafe.re ├── d │ ├── 01_basic_b.d │ ├── 01_basic_b.re │ ├── 01_basic_conv.d │ ├── 01_basic_conv.re │ ├── 01_basic_d.d │ ├── 01_basic_d.re │ ├── 01_basic_functions.d │ ├── 01_basic_functions.re │ ├── 01_basic_s.d │ ├── 01_basic_s.re │ ├── 02_storable_state_with_conditions.d │ ├── 02_storable_state_with_conditions.re │ ├── __run_all.sh │ ├── nested_fixed_tags.d │ ├── nested_fixed_tags.re │ ├── signed_yyctype.d │ ├── signed_yyctype.re │ ├── special_escapes.d │ ├── special_escapes.re │ ├── unsupported_cgoto.d │ ├── unsupported_cgoto.re │ ├── unsupported_monadic.d │ ├── unsupported_monadic.re │ ├── unsupported_unsafe.d │ └── unsupported_unsafe.re ├── go │ ├── 001_basic_b.go │ ├── 001_basic_b.re │ ├── 001_basic_conv.go │ ├── 001_basic_conv.re │ ├── 001_basic_d.go │ ├── 001_basic_d.re │ ├── 001_basic_functions.go │ ├── 001_basic_functions.re │ ├── 001_basic_s.go │ ├── 001_basic_s.re │ ├── 002_fill_eof_rule.go │ ├── 002_fill_eof_rule.re │ ├── 002_fill_eof_rule_f.go │ ├── 002_fill_eof_rule_f.re │ ├── 002_fill_eof_rule_functions.go │ ├── 002_fill_eof_rule_functions.re │ ├── 003_fill.go │ ├── 003_fill.re │ ├── 003_fill_bf.go │ ├── 003_fill_bf.re │ ├── 003_fill_f.go │ ├── 003_fill_f.re │ ├── 003_fill_functions.go │ ├── 003_fill_functions.re │ ├── 004_yyaccept.go │ ├── 004_yyaccept.re │ ├── 005_mtags.go │ ├── 005_mtags.re │ ├── 005_posix_captures.go │ ├── 005_posix_captures.re │ ├── 005_stags.go │ ├── 005_stags.re │ ├── 008_unicode_reuse.go │ ├── 008_unicode_reuse.re │ ├── 009_conditions.go │ ├── 009_conditions.re │ ├── 010_error_case_ranges.go │ ├── 010_error_case_ranges.re │ ├── 011_quotes.go │ ├── 011_quotes.re │ ├── __run_all.sh │ ├── loop_switch │ │ ├── advanced.go │ │ ├── advanced.re │ │ ├── basic.go │ │ └── basic.re │ ├── nested_fixed_tags.go │ ├── nested_fixed_tags.re │ ├── recursive_functions │ │ ├── advanced.go │ │ ├── advanced.re │ │ ├── basic.go │ │ └── basic.re │ ├── signed_yyctype.go │ ├── signed_yyctype.re │ ├── special_escapes.go │ ├── special_escapes.re │ ├── unsupported_case_ranges.go │ ├── unsupported_case_ranges.re │ ├── unsupported_cgoto.go │ ├── unsupported_cgoto.re │ ├── unsupported_monadic.go │ ├── unsupported_monadic.re │ ├── unsupported_unsafe.go │ └── unsupported_unsafe.re ├── haskell │ ├── 01_basic_b.hs │ ├── 01_basic_b.re │ ├── 01_basic_s.hs │ ├── 01_basic_s.re │ ├── __run_all.sh │ ├── error_code_model_goto_label.hs │ ├── error_code_model_goto_label.re │ ├── error_code_model_loop-switch.hs │ ├── error_code_model_loop-switch.re │ ├── nested_fixed_tags.hs │ ├── nested_fixed_tags.re │ ├── signed_yyctype.hs │ ├── signed_yyctype.re │ ├── special_escapes.hs │ ├── special_escapes.re │ ├── standalone_single_quotes.hs │ ├── standalone_single_quotes.re │ ├── unsupported_captures.hs │ ├── unsupported_captures.re │ ├── unsupported_case_ranges.hs │ ├── unsupported_case_ranges.re │ ├── unsupported_cgoto.hs │ ├── unsupported_cgoto.re │ ├── unsupported_unsafe.hs │ └── unsupported_unsafe.re ├── java │ ├── 01_basic_b.java │ ├── 01_basic_b.re │ ├── 01_basic_s.java │ ├── 01_basic_s.re │ ├── __run_all.sh │ ├── nested_fixed_tags.java │ ├── nested_fixed_tags.re │ ├── signed_yyctype.java │ ├── signed_yyctype.re │ ├── special_escapes.java │ ├── special_escapes.re │ ├── unsupported_case_ranges.java │ ├── unsupported_case_ranges.re │ ├── unsupported_cgoto.java │ ├── unsupported_cgoto.re │ ├── unsupported_monadic.java │ ├── unsupported_monadic.re │ ├── unsupported_unsafe.java │ └── unsupported_unsafe.re ├── js │ ├── 01_basic_b.js │ ├── 01_basic_b.re │ ├── 01_basic_s.js │ ├── 01_basic_s.re │ ├── __run_all.sh │ ├── nested_fixed_tags.js │ ├── nested_fixed_tags.re │ ├── special_escapes.js │ ├── special_escapes.re │ ├── unsupported_case_ranges.js │ ├── unsupported_case_ranges.re │ ├── unsupported_cgoto.js │ ├── unsupported_cgoto.re │ ├── unsupported_monadic.js │ ├── unsupported_monadic.re │ ├── unsupported_unsafe.js │ └── unsupported_unsafe.re ├── ocaml │ ├── 01_basic_b.ml │ ├── 01_basic_b.re │ ├── 01_basic_s.ml │ ├── 01_basic_s.re │ ├── __run_all.sh │ ├── error_code_model_goto_label.ml │ ├── error_code_model_goto_label.re │ ├── error_code_model_loop-switch.ml │ ├── error_code_model_loop-switch.re │ ├── nested_fixed_tags.ml │ ├── nested_fixed_tags.re │ ├── special_escapes.ml │ ├── special_escapes.re │ ├── standalone_single_quotes.ml │ ├── standalone_single_quotes.re │ ├── unsupported_cgoto.ml │ ├── unsupported_cgoto.re │ ├── unsupported_monadic.ml │ ├── unsupported_monadic.re │ ├── unsupported_unsafe.ml │ └── unsupported_unsafe.re ├── python │ ├── 01_basic_b.py │ ├── 01_basic_b.re │ ├── 01_basic_switch.py │ ├── 01_basic_switch.re │ ├── __run_all.sh │ ├── indentation_sensitive.py │ ├── indentation_sensitive.re │ ├── indentation_sensitive_crlf.py │ ├── indentation_sensitive_crlf.re │ ├── indentation_sensitive_error1.py │ ├── indentation_sensitive_error1.re │ ├── indentation_sensitive_error2.py │ ├── indentation_sensitive_error2.re │ ├── nested_fixed_tags.py │ ├── nested_fixed_tags.re │ ├── single_quoted_strings.py │ ├── single_quoted_strings.re │ ├── special_escapes.py │ ├── special_escapes.re │ ├── switch_vs_ifs.py │ ├── switch_vs_ifs.re │ ├── unsupported_case_ranges.py │ ├── unsupported_case_ranges.re │ ├── unsupported_cgoto.py │ ├── unsupported_cgoto.re │ ├── unsupported_monadic.py │ ├── unsupported_monadic.re │ ├── unsupported_unsafe.py │ └── unsupported_unsafe.re ├── rust │ ├── 01_basic_b.re │ ├── 01_basic_b.rs │ ├── 01_basic_conv.re │ ├── 01_basic_conv.rs │ ├── 01_basic_d.re │ ├── 01_basic_d.rs │ ├── 01_basic_functions.re │ ├── 01_basic_functions.rs │ ├── 01_basic_s.re │ ├── 01_basic_s.rs │ ├── 02_storable_state_with_conditions.re │ ├── 02_storable_state_with_conditions.rs │ ├── __run_all.sh │ ├── code_with_single_quotes.re │ ├── code_with_single_quotes.rs │ ├── error_code_model_goto_label.re │ ├── error_code_model_goto_label.rs │ ├── nested_fixed_tags.re │ ├── nested_fixed_tags.rs │ ├── no_unsafe.re │ ├── no_unsafe.rs │ ├── recursive_functions │ │ ├── advanced.re │ │ ├── advanced.rs │ │ ├── basic.re │ │ └── basic.rs │ ├── signed_yyctype.re │ ├── signed_yyctype.rs │ ├── special_escapes.re │ ├── special_escapes.rs │ ├── unsupported_cgoto.re │ ├── unsupported_cgoto.rs │ ├── unsupported_monadic.re │ ├── unsupported_monadic.rs │ ├── yyloop.re │ └── yyloop.rs ├── swift │ ├── 001_basic_b.re │ ├── 001_basic_b.swift │ ├── 001_basic_conv.re │ ├── 001_basic_conv.swift │ ├── 001_basic_d.re │ ├── 001_basic_d.swift │ ├── 001_basic_s.re │ ├── 001_basic_s.swift │ ├── 002_storable_state_with_conditions.re │ ├── 002_storable_state_with_conditions.swift │ ├── __run_all.sh │ ├── backtick_escaped_identifiers.re │ ├── backtick_escaped_identifiers.swift │ ├── nested_fixed_tags.re │ ├── nested_fixed_tags.swift │ ├── recursive_functions │ │ ├── advanced.re │ │ ├── advanced.swift │ │ ├── basic.re │ │ └── basic.swift │ ├── special_escapes.re │ ├── special_escapes.swift │ ├── unsupported_cgoto.re │ ├── unsupported_cgoto.swift │ ├── unsupported_functions.re │ ├── unsupported_functions.swift │ ├── unsupported_monadic.re │ ├── unsupported_monadic.swift │ ├── unsupported_unsafe.re │ └── unsupported_unsafe.swift ├── v │ ├── 01_basic_b.re │ ├── 01_basic_b.v │ ├── 01_basic_s.re │ ├── 01_basic_s.v │ ├── __run_all.sh │ ├── backtick_quoted_chars.re │ ├── backtick_quoted_chars.v │ ├── loop_switch │ │ ├── advanced.re │ │ ├── advanced.v │ │ ├── basic.re │ │ └── basic.v │ ├── nested_fixed_tags.re │ ├── nested_fixed_tags.v │ ├── recursive_functions │ │ ├── advanced.re │ │ ├── advanced.v │ │ ├── basic.re │ │ └── basic.v │ ├── special_escapes.re │ ├── special_escapes.v │ ├── unsupported_cgoto.re │ ├── unsupported_cgoto.v │ ├── unsupported_monadic.re │ └── unsupported_monadic.v └── zig │ ├── 01_basic_b.re │ ├── 01_basic_b.zig │ ├── 01_basic_conv.re │ ├── 01_basic_conv.zig │ ├── 01_basic_s.re │ ├── 01_basic_s.zig │ ├── __run_all.sh │ ├── nested_fixed_tags.re │ ├── nested_fixed_tags.zig │ ├── recursive_functions │ ├── advanced.re │ ├── advanced.zig │ ├── basic.re │ └── basic.zig │ ├── special_escapes.re │ ├── special_escapes.zig │ ├── unsupported_cgoto.re │ ├── unsupported_cgoto.zig │ ├── unsupported_monadic.re │ └── unsupported_monadic.zig ├── conditions ├── cond_enum_header_and_directives.c ├── cond_enum_header_and_directives.re ├── cond_enum_none.c ├── cond_enum_none.re ├── cond_enum_only_header.c ├── cond_enum_only_header.re ├── cond_error_00.c ├── cond_error_00.re ├── cond_error_01.c ├── cond_error_01.re ├── cond_error_03.c ├── cond_error_03.re ├── cond_error_07.c ├── cond_error_07.re ├── cond_error_08.c ├── cond_error_08.re ├── cond_error_09.c ├── cond_error_09.re ├── cond_error_10.c ├── cond_error_10.re ├── cond_error_11.c ├── cond_error_11.re ├── cond_error_12.c ├── cond_error_12.re ├── cond_without_rules_1.c ├── cond_without_rules_1.re ├── cond_without_rules_2.c ├── cond_without_rules_2.re ├── cond_without_rules_3.c ├── cond_without_rules_3.re ├── condition_01.c ├── condition_01.re ├── condition_01a.c ├── condition_01a.re ├── condition_01b.c ├── condition_01b.re ├── condition_02.c ├── condition_02.re ├── condition_02_cg.c ├── condition_02_cg.re ├── condition_03.c ├── condition_03.re ├── condition_04.c ├── condition_04.re ├── condition_05.c ├── condition_05.re ├── condition_05_cg.c ├── condition_05_cg.re ├── condition_05_cs.c ├── condition_05_cs.re ├── condition_06.c ├── condition_06.re ├── condition_07.c ├── condition_07.re ├── condition_08.c ├── condition_08.re ├── condition_08_cbif.c ├── condition_08_cbif.re ├── condition_09.c ├── condition_09.re ├── condition_09_cbif.c ├── condition_09_cbif.re ├── condition_10.c ├── condition_10.re ├── condition_11.c ├── condition_11.re ├── condition_12.c ├── condition_12.re ├── condition_13.c ├── condition_13.re ├── condition_13a.c ├── condition_13a.re ├── condition_14.c ├── condition_14.re ├── condition_14_cgif.c ├── condition_14_cgif.re ├── condition_14_cif.c ├── condition_14_cif.re ├── condition_14_csif.c ├── condition_14_csif.re ├── condition_15.c ├── condition_15.re ├── condition_16.c ├── condition_16.re ├── condtype.c ├── condtype.re ├── condtype_c.c ├── condtype_c.re ├── condtype_cg.c ├── condtype_cg.re ├── condtype_cs.c ├── condtype_cs.re ├── condtype_decl.c ├── condtype_decl.re ├── condtype_decl_c.c ├── condtype_decl_c.re ├── condtype_decl_cg.c ├── condtype_decl_cg.re ├── condtype_forwdecl.c ├── condtype_forwdecl.re ├── condtype_forwdecl_cg.c ├── condtype_forwdecl_cg.re ├── condtype_single.c ├── condtype_single.re ├── condtype_single_c.c ├── condtype_single_c.re ├── condtype_single_cg.c ├── condtype_single_cg.re ├── condtype_yysetcondition.c ├── condtype_yysetcondition.re ├── condtype_yysetcondition_cg.c ├── condtype_yysetcondition_cg.re ├── mixed_blocks.c ├── mixed_blocks.re ├── mixed_blocks_with_reuse.c ├── mixed_blocks_with_reuse.re ├── mixed_blocks_with_reuse_error1.c ├── mixed_blocks_with_reuse_error1.re ├── mixed_blocks_with_reuse_error2.c └── mixed_blocks_with_reuse_error2.re ├── config ├── __gen.hs ├── all_configs.c ├── all_configs.re ├── all_options.c ├── all_options.re ├── autogen │ ├── cond_divider_sigil_c.c │ ├── cond_divider_sigil_c.re │ ├── cond_divider_sigil_rc.c │ ├── cond_divider_sigil_rc.re │ ├── cond_get_style_rc.c │ ├── cond_get_style_rc.re │ ├── cond_goto_sigil_c.c │ ├── cond_goto_sigil_c.re │ ├── cond_goto_sigil_rc.c │ ├── cond_goto_sigil_rc.re │ ├── cond_set_sigil_rc.c │ ├── cond_set_sigil_rc.re │ ├── cond_set_style_rc.c │ ├── cond_set_style_rc.re │ ├── fill_check_eof_r.c │ ├── fill_check_eof_r.re │ ├── fill_check_eof_rf.c │ ├── fill_check_eof_rf.re │ ├── fill_check_r.c │ ├── fill_check_r.re │ ├── fill_check_rf.c │ ├── fill_check_rf.re │ ├── fill_sigil_eof_r.c │ ├── fill_sigil_eof_r.re │ ├── fill_sigil_r.c │ ├── fill_sigil_r.re │ ├── fill_style_eof_r.c │ ├── fill_style_eof_r.re │ ├── fill_style_r.c │ ├── fill_style_r.re │ ├── startlabel.c │ ├── startlabel.re │ ├── startlabel_r.c │ ├── startlabel_r.re │ ├── startlabel_rc.c │ ├── startlabel_rc.re │ ├── startlabel_rcf.c │ ├── startlabel_rcf.re │ ├── startlabel_rf.c │ ├── startlabel_rf.re │ ├── state_get_style_f.c │ ├── state_get_style_f.re │ ├── state_get_style_rf.c │ ├── state_get_style_rf.re │ ├── state_set_sigil_rf.c │ ├── state_set_sigil_rf.re │ ├── state_set_style_rf.c │ ├── state_set_style_rf.re │ ├── tags_expr_sigil_r.c │ └── tags_expr_sigil_r.re ├── config1.c ├── config1.re ├── config10.c ├── config10.re ├── config11.c ├── config11.re ├── config12.c ├── config12.re ├── config12_error1.c ├── config12_error1.re ├── config12_error2.c ├── config12_error2.re ├── config13.c ├── config13.re ├── config13_error1.c ├── config13_error1.re ├── config13_error2.c ├── config13_error2.re ├── config13_error3.c ├── config13_error3.re ├── config13_error4.c ├── config13_error4.re ├── config2.c ├── config2.re ├── config4a.c ├── config4a.re ├── config4b.c ├── config4b.re ├── config4f.c ├── config4f.re ├── config4g.c ├── config4g.re ├── config5.c ├── config5.re ├── config6.c ├── config6.re ├── config7a.c ├── config7a.re ├── config7b.c ├── config7b.re ├── config7c.c ├── config7c.re ├── config8.c ├── config8.re ├── config9.c ├── config9.re ├── multiline.c ├── multiline.re ├── no_syntax_file.c ├── no_syntax_file.re ├── syntax_file_error_raw_newline_1.c ├── syntax_file_error_raw_newline_1.inc ├── syntax_file_error_raw_newline_1.re ├── syntax_file_error_raw_newline_2.c ├── syntax_file_error_raw_newline_2.inc ├── syntax_file_error_raw_newline_2.re ├── syntax_file_override.py ├── syntax_file_override.re ├── tag_api_freeform.c ├── tag_api_freeform.re ├── tag_api_functions.c └── tag_api_functions.re ├── control_flow_fail.c ├── control_flow_fail.re ├── control_flow_ok.c ├── control_flow_ok.re ├── control_flow_yymarker_fail.c ├── control_flow_yymarker_fail.re ├── control_flow_yymarker_ok.c ├── control_flow_yymarker_ok.re ├── control_flow_yymarker_yyaccept_fail.c ├── control_flow_yymarker_yyaccept_fail.re ├── control_flow_yymarker_yyaccept_ok.c ├── control_flow_yymarker_yyaccept_ok.re ├── cpoint_class_error_eol.c ├── cpoint_class_error_eol.re ├── cpoint_class_error_esc_eol.c ├── cpoint_class_error_esc_eol.re ├── cpoint_class_esc_dash.c ├── cpoint_class_esc_dash.re ├── cpoint_string_error_eol.c ├── cpoint_string_error_eol.re ├── cpoint_string_error_esc_eol.c ├── cpoint_string_error_esc_eol.re ├── ctx.c ├── ctx.re ├── ctx_b.c ├── ctx_b.re ├── ctx_s.c ├── ctx_s.re ├── cunroll.c ├── cunroll.re ├── cvsignore.c ├── cvsignore.re ├── cvsignore_b.c ├── cvsignore_b.re ├── cvsignore_s.c ├── cvsignore_s.re ├── cvsignore_u.c ├── cvsignore_u.re ├── cvsignore_ub.c ├── cvsignore_ub.re ├── cvsignore_w.c ├── cvsignore_w.re ├── cvsignore_wb.c ├── cvsignore_wb.re ├── debug ├── adfa.c ├── adfa.re ├── cfg.c ├── cfg.re ├── closure_stats_gor1.c ├── closure_stats_gor1.re ├── dfa_det.c ├── dfa_det.re ├── dfa_min.c ├── dfa_min.re ├── dfa_raw.c ├── dfa_raw.re ├── dfa_tagopt.c ├── dfa_tagopt.re ├── interf.c ├── interf.re ├── nfa.c └── nfa.re ├── directives ├── cond_format.c ├── cond_format.re ├── conditions.c ├── conditions.re ├── getstate_autogen.c ├── getstate_autogen.re ├── getstate_autogen_only_use.c ├── getstate_autogen_only_use.re ├── getstate_autogen_use_before_normal.c ├── getstate_autogen_use_before_normal.re ├── getstate_autogen_with_use.c ├── getstate_autogen_with_use.re ├── getstate_blocklist.c ├── getstate_blocklist.re ├── getstate_blocklist_error_empty.c ├── getstate_blocklist_error_empty.re ├── getstate_blocklist_error_missing.c ├── getstate_blocklist_error_missing.re ├── getstate_blocklist_with_use.c ├── getstate_blocklist_with_use.re ├── getstate_error_dup_name.c ├── getstate_error_dup_name.re ├── getstate_global.c ├── getstate_global.re ├── getstate_global_error_empty.c ├── getstate_global_error_empty.re ├── getstate_global_with_use.c ├── getstate_global_with_use.re ├── getstate_labels.c ├── getstate_labels.re ├── max_format.c ├── max_format.re ├── maxfill.c ├── maxfill.re ├── maxfill_error_missing.c ├── maxfill_error_missing.re ├── maxnmatch.c ├── maxnmatch.re ├── maxnmatch_error_missing.c ├── maxnmatch_error_missing.re ├── tagsdir.c └── tagsdir.re ├── dot ├── bug47_dot_escapes.c ├── bug47_dot_escapes.re ├── dot.c ├── dot.re ├── dot2.c ├── dot2.re ├── dot_backslash.c ├── dot_backslash.re ├── dot_conditions.c ├── dot_conditions.re ├── dot_ranges.c ├── dot_ranges.re ├── php20150211_zend_ini_scanner.c ├── php20150211_zend_ini_scanner.re ├── php20150211_zend_language_scanner.c ├── php20150211_zend_language_scanner.re ├── scanner_re2c_default.c └── scanner_re2c_default.re ├── eager_skip_with_bitmaps.c ├── eager_skip_with_bitmaps.re ├── encodings ├── bug1711240.c ├── bug1711240.re ├── bug1711240_ei.c ├── bug1711240_ei.re ├── bug2102138a.c ├── bug2102138a.re ├── bug2102138b.c ├── bug2102138b.re ├── bug2102138c.c ├── bug2102138c.re ├── calc_001.c ├── calc_001.re ├── calc_001_ebcdic.c ├── calc_001_ebcdic.re ├── class1.c ├── class1.re ├── class2.c ├── class2.re ├── class3.c ├── class3.re ├── class4.c ├── class4.re ├── code_points.c ├── code_points.re ├── code_points_8.c ├── code_points_8.re ├── code_points_e.c ├── code_points_e.re ├── code_points_error.c ├── code_points_error.re ├── code_points_error_8.c ├── code_points_error_8.re ├── code_points_error_e.c ├── code_points_error_e.re ├── code_points_error_u.c ├── code_points_error_u.re ├── code_points_error_w.c ├── code_points_error_w.re ├── code_points_error_x.c ├── code_points_error_x.re ├── code_points_u.c ├── code_points_u.re ├── code_points_w.c ├── code_points_w.re ├── code_points_x.c ├── code_points_x.re ├── default.c ├── default.re ├── default_00.c ├── default_00.re ├── default_8.c ├── default_8.re ├── default_dup.c ├── default_dup.re ├── default_dup_ic.c ├── default_dup_ic.re ├── default_dup_star_1.c ├── default_dup_star_1.re ├── default_dup_star_2.c ├── default_dup_star_2.re ├── default_e.c ├── default_e.re ├── default_full.c ├── default_full.re ├── default_full_8.c ├── default_full_8.re ├── default_full_8_encoding_policy_fail.c ├── default_full_8_encoding_policy_fail.re ├── default_full_8_encoding_policy_substitute.c ├── default_full_8_encoding_policy_substitute.re ├── default_full_e.c ├── default_full_e.re ├── default_full_u.c ├── default_full_u.re ├── default_full_u_encoding_policy_fail.c ├── default_full_u_encoding_policy_fail.re ├── default_full_u_encoding_policy_substitute.c ├── default_full_u_encoding_policy_substitute.re ├── default_full_w.c ├── default_full_w.re ├── default_full_w_encoding_policy_fail.c ├── default_full_w_encoding_policy_fail.re ├── default_full_w_encoding_policy_substitute.c ├── default_full_w_encoding_policy_substitute.re ├── default_full_x.c ├── default_full_x.re ├── default_full_x_encoding_policy_fail.c ├── default_full_x_encoding_policy_fail.re ├── default_full_x_encoding_policy_substitute.c ├── default_full_x_encoding_policy_substitute.re ├── default_u.c ├── default_u.re ├── default_w.c ├── default_w.re ├── default_x.c ├── default_x.re ├── diff.c ├── diff.re ├── diff_i.c ├── diff_i.re ├── diff_i8.c ├── diff_i8.re ├── diff_ie.c ├── diff_ie.re ├── diff_iu.c ├── diff_iu.re ├── diff_iw.c ├── diff_iw.re ├── enc_reset.c ├── enc_reset.re ├── gen_class_examples.hs ├── inplace_config_encoding.c ├── inplace_config_encoding.re ├── range_dot.c ├── range_dot.re ├── range_dot_8.c ├── range_dot_8.re ├── range_dot_e.c ├── range_dot_e.re ├── range_dot_u.c ├── range_dot_u.re ├── range_dot_w.c ├── range_dot_w.re ├── range_dot_x.c ├── range_dot_x.re ├── range_empty.c ├── range_empty.re ├── range_empty_8.c ├── range_empty_8.re ├── range_empty_e.c ├── range_empty_e.re ├── range_empty_u.c ├── range_empty_u.re ├── range_empty_w.c ├── range_empty_w.re ├── range_empty_x.c ├── range_empty_x.re ├── range_full.c ├── range_full.re ├── range_full_8.c ├── range_full_8.re ├── range_full_e.c ├── range_full_e.re ├── range_full_u.c ├── range_full_u.re ├── range_full_w.c ├── range_full_w.re ├── range_full_x.c ├── range_full_x.re ├── range_neg_lf.c ├── range_neg_lf.re ├── range_neg_lf_8.c ├── range_neg_lf_8.re ├── range_neg_lf_e.c ├── range_neg_lf_e.re ├── range_neg_lf_u.c ├── range_neg_lf_u.re ├── range_neg_lf_w.c ├── range_neg_lf_w.re ├── range_neg_lf_x.c ├── range_neg_lf_x.re ├── unicode_blocks_8_encoding_policy_fail.c ├── unicode_blocks_8_encoding_policy_fail.re ├── unicode_blocks_8_encoding_policy_ignore.c ├── unicode_blocks_8_encoding_policy_ignore.re ├── unicode_blocks_8_encoding_policy_substitute.c ├── unicode_blocks_8_encoding_policy_substitute.re ├── unicode_blocks_u_encoding_policy_fail.c ├── unicode_blocks_u_encoding_policy_fail.re ├── unicode_blocks_u_encoding_policy_ignore.c ├── unicode_blocks_u_encoding_policy_ignore.re ├── unicode_blocks_u_encoding_policy_substitute.c ├── unicode_blocks_u_encoding_policy_substitute.re ├── unicode_blocks_x_encoding_policy_fail.c ├── unicode_blocks_x_encoding_policy_fail.re ├── unicode_blocks_x_encoding_policy_ignore.c ├── unicode_blocks_x_encoding_policy_ignore.re ├── unicode_blocks_x_encoding_policy_substitute.c ├── unicode_blocks_x_encoding_policy_substitute.re ├── unicode_group_C_8_encoding_policy_fail.c ├── unicode_group_C_8_encoding_policy_fail.re ├── unicode_group_C_8_encoding_policy_ignore.c ├── unicode_group_C_8_encoding_policy_ignore.re ├── unicode_group_C_8_encoding_policy_substitute.c ├── unicode_group_C_8_encoding_policy_substitute.re ├── unicode_group_C_u_encoding_policy_fail.c ├── unicode_group_C_u_encoding_policy_fail.re ├── unicode_group_C_u_encoding_policy_ignore.c ├── unicode_group_C_u_encoding_policy_ignore.re ├── unicode_group_C_u_encoding_policy_substitute.c ├── unicode_group_C_u_encoding_policy_substitute.re ├── unicode_group_C_x_encoding_policy_fail.c ├── unicode_group_C_x_encoding_policy_fail.re ├── unicode_group_C_x_encoding_policy_ignore.c ├── unicode_group_C_x_encoding_policy_ignore.re ├── unicode_group_C_x_encoding_policy_substitute.c ├── unicode_group_C_x_encoding_policy_substitute.re ├── unicode_group_Cc_8_encoding_policy_fail.c ├── unicode_group_Cc_8_encoding_policy_fail.re ├── unicode_group_Cc_8_encoding_policy_ignore.c ├── unicode_group_Cc_8_encoding_policy_ignore.re ├── unicode_group_Cc_8_encoding_policy_substitute.c ├── unicode_group_Cc_8_encoding_policy_substitute.re ├── unicode_group_Cc_u_encoding_policy_fail.c ├── unicode_group_Cc_u_encoding_policy_fail.re ├── unicode_group_Cc_u_encoding_policy_ignore.c ├── unicode_group_Cc_u_encoding_policy_ignore.re ├── unicode_group_Cc_u_encoding_policy_substitute.c ├── unicode_group_Cc_u_encoding_policy_substitute.re ├── unicode_group_Cc_x_encoding_policy_fail.c ├── unicode_group_Cc_x_encoding_policy_fail.re ├── unicode_group_Cc_x_encoding_policy_ignore.c ├── unicode_group_Cc_x_encoding_policy_ignore.re ├── unicode_group_Cc_x_encoding_policy_substitute.c ├── unicode_group_Cc_x_encoding_policy_substitute.re ├── unicode_group_Cf_8_encoding_policy_fail.c ├── unicode_group_Cf_8_encoding_policy_fail.re ├── unicode_group_Cf_8_encoding_policy_ignore.c ├── unicode_group_Cf_8_encoding_policy_ignore.re ├── unicode_group_Cf_8_encoding_policy_substitute.c ├── unicode_group_Cf_8_encoding_policy_substitute.re ├── unicode_group_Cf_u_encoding_policy_fail.c ├── unicode_group_Cf_u_encoding_policy_fail.re ├── unicode_group_Cf_u_encoding_policy_ignore.c ├── unicode_group_Cf_u_encoding_policy_ignore.re ├── unicode_group_Cf_u_encoding_policy_substitute.c ├── unicode_group_Cf_u_encoding_policy_substitute.re ├── unicode_group_Cf_x_encoding_policy_fail.c ├── unicode_group_Cf_x_encoding_policy_fail.re ├── unicode_group_Cf_x_encoding_policy_ignore.c ├── unicode_group_Cf_x_encoding_policy_ignore.re ├── unicode_group_Cf_x_encoding_policy_substitute.c ├── unicode_group_Cf_x_encoding_policy_substitute.re ├── unicode_group_Cn_8_encoding_policy_fail.c ├── unicode_group_Cn_8_encoding_policy_fail.re ├── unicode_group_Cn_8_encoding_policy_ignore.c ├── unicode_group_Cn_8_encoding_policy_ignore.re ├── unicode_group_Cn_8_encoding_policy_substitute.c ├── unicode_group_Cn_8_encoding_policy_substitute.re ├── unicode_group_Cn_u_encoding_policy_fail.c ├── unicode_group_Cn_u_encoding_policy_fail.re ├── unicode_group_Cn_u_encoding_policy_ignore.c ├── unicode_group_Cn_u_encoding_policy_ignore.re ├── unicode_group_Cn_u_encoding_policy_substitute.c ├── unicode_group_Cn_u_encoding_policy_substitute.re ├── unicode_group_Cn_x_encoding_policy_fail.c ├── unicode_group_Cn_x_encoding_policy_fail.re ├── unicode_group_Cn_x_encoding_policy_ignore.c ├── unicode_group_Cn_x_encoding_policy_ignore.re ├── unicode_group_Cn_x_encoding_policy_substitute.c ├── unicode_group_Cn_x_encoding_policy_substitute.re ├── unicode_group_Co_8_encoding_policy_fail.c ├── unicode_group_Co_8_encoding_policy_fail.re ├── unicode_group_Co_8_encoding_policy_ignore.c ├── unicode_group_Co_8_encoding_policy_ignore.re ├── unicode_group_Co_8_encoding_policy_substitute.c ├── unicode_group_Co_8_encoding_policy_substitute.re ├── unicode_group_Co_u_encoding_policy_fail.c ├── unicode_group_Co_u_encoding_policy_fail.re ├── unicode_group_Co_u_encoding_policy_ignore.c ├── unicode_group_Co_u_encoding_policy_ignore.re ├── unicode_group_Co_u_encoding_policy_substitute.c ├── unicode_group_Co_u_encoding_policy_substitute.re ├── unicode_group_Co_x_encoding_policy_fail.c ├── unicode_group_Co_x_encoding_policy_fail.re ├── unicode_group_Co_x_encoding_policy_ignore.c ├── unicode_group_Co_x_encoding_policy_ignore.re ├── unicode_group_Co_x_encoding_policy_substitute.c ├── unicode_group_Co_x_encoding_policy_substitute.re ├── unicode_group_Cs_8_encoding_policy_fail.c ├── unicode_group_Cs_8_encoding_policy_fail.re ├── unicode_group_Cs_8_encoding_policy_ignore.c ├── unicode_group_Cs_8_encoding_policy_ignore.re ├── unicode_group_Cs_8_encoding_policy_substitute.c ├── unicode_group_Cs_8_encoding_policy_substitute.re ├── unicode_group_Cs_u_encoding_policy_fail.c ├── unicode_group_Cs_u_encoding_policy_fail.re ├── unicode_group_Cs_u_encoding_policy_ignore.c ├── unicode_group_Cs_u_encoding_policy_ignore.re ├── unicode_group_Cs_u_encoding_policy_substitute.c ├── unicode_group_Cs_u_encoding_policy_substitute.re ├── unicode_group_Cs_x_encoding_policy_fail.c ├── unicode_group_Cs_x_encoding_policy_fail.re ├── unicode_group_Cs_x_encoding_policy_ignore.c ├── unicode_group_Cs_x_encoding_policy_ignore.re ├── unicode_group_Cs_x_encoding_policy_substitute.c ├── unicode_group_Cs_x_encoding_policy_substitute.re ├── unicode_group_L_8_encoding_policy_fail.c ├── unicode_group_L_8_encoding_policy_fail.re ├── unicode_group_L_8_encoding_policy_ignore.c ├── unicode_group_L_8_encoding_policy_ignore.re ├── unicode_group_L_8_encoding_policy_substitute.c ├── unicode_group_L_8_encoding_policy_substitute.re ├── unicode_group_L__8_encoding_policy_fail.c ├── unicode_group_L__8_encoding_policy_fail.re ├── unicode_group_L__8_encoding_policy_ignore.c ├── unicode_group_L__8_encoding_policy_ignore.re ├── unicode_group_L__8_encoding_policy_substitute.c ├── unicode_group_L__8_encoding_policy_substitute.re ├── unicode_group_L__u_encoding_policy_fail.c ├── unicode_group_L__u_encoding_policy_fail.re ├── unicode_group_L__u_encoding_policy_ignore.c ├── unicode_group_L__u_encoding_policy_ignore.re ├── unicode_group_L__u_encoding_policy_substitute.c ├── unicode_group_L__u_encoding_policy_substitute.re ├── unicode_group_L__x_encoding_policy_fail.c ├── unicode_group_L__x_encoding_policy_fail.re ├── unicode_group_L__x_encoding_policy_ignore.c ├── unicode_group_L__x_encoding_policy_ignore.re ├── unicode_group_L__x_encoding_policy_substitute.c ├── unicode_group_L__x_encoding_policy_substitute.re ├── unicode_group_L_u_encoding_policy_fail.c ├── unicode_group_L_u_encoding_policy_fail.re ├── unicode_group_L_u_encoding_policy_ignore.c ├── unicode_group_L_u_encoding_policy_ignore.re ├── unicode_group_L_u_encoding_policy_substitute.c ├── unicode_group_L_u_encoding_policy_substitute.re ├── unicode_group_L_x_encoding_policy_fail.c ├── unicode_group_L_x_encoding_policy_fail.re ├── unicode_group_L_x_encoding_policy_ignore.c ├── unicode_group_L_x_encoding_policy_ignore.re ├── unicode_group_L_x_encoding_policy_substitute.c ├── unicode_group_L_x_encoding_policy_substitute.re ├── unicode_group_Ll_8_encoding_policy_fail.c ├── unicode_group_Ll_8_encoding_policy_fail.re ├── unicode_group_Ll_8_encoding_policy_ignore.c ├── unicode_group_Ll_8_encoding_policy_ignore.re ├── unicode_group_Ll_8_encoding_policy_substitute.c ├── unicode_group_Ll_8_encoding_policy_substitute.re ├── unicode_group_Ll_u_encoding_policy_fail.c ├── unicode_group_Ll_u_encoding_policy_fail.re ├── unicode_group_Ll_u_encoding_policy_ignore.c ├── unicode_group_Ll_u_encoding_policy_ignore.re ├── unicode_group_Ll_u_encoding_policy_substitute.c ├── unicode_group_Ll_u_encoding_policy_substitute.re ├── unicode_group_Ll_x_encoding_policy_fail.c ├── unicode_group_Ll_x_encoding_policy_fail.re ├── unicode_group_Ll_x_encoding_policy_ignore.c ├── unicode_group_Ll_x_encoding_policy_ignore.re ├── unicode_group_Ll_x_encoding_policy_substitute.c ├── unicode_group_Ll_x_encoding_policy_substitute.re ├── unicode_group_Lm_8_encoding_policy_fail.c ├── unicode_group_Lm_8_encoding_policy_fail.re ├── unicode_group_Lm_8_encoding_policy_ignore.c ├── unicode_group_Lm_8_encoding_policy_ignore.re ├── unicode_group_Lm_8_encoding_policy_substitute.c ├── unicode_group_Lm_8_encoding_policy_substitute.re ├── unicode_group_Lm_u_encoding_policy_fail.c ├── unicode_group_Lm_u_encoding_policy_fail.re ├── unicode_group_Lm_u_encoding_policy_ignore.c ├── unicode_group_Lm_u_encoding_policy_ignore.re ├── unicode_group_Lm_u_encoding_policy_substitute.c ├── unicode_group_Lm_u_encoding_policy_substitute.re ├── unicode_group_Lm_x_encoding_policy_fail.c ├── unicode_group_Lm_x_encoding_policy_fail.re ├── unicode_group_Lm_x_encoding_policy_ignore.c ├── unicode_group_Lm_x_encoding_policy_ignore.re ├── unicode_group_Lm_x_encoding_policy_substitute.c ├── unicode_group_Lm_x_encoding_policy_substitute.re ├── unicode_group_Lo_8_encoding_policy_fail.c ├── unicode_group_Lo_8_encoding_policy_fail.re ├── unicode_group_Lo_8_encoding_policy_ignore.c ├── unicode_group_Lo_8_encoding_policy_ignore.re ├── unicode_group_Lo_8_encoding_policy_substitute.c ├── unicode_group_Lo_8_encoding_policy_substitute.re ├── unicode_group_Lo_u_encoding_policy_fail.c ├── unicode_group_Lo_u_encoding_policy_fail.re ├── unicode_group_Lo_u_encoding_policy_ignore.c ├── unicode_group_Lo_u_encoding_policy_ignore.re ├── unicode_group_Lo_u_encoding_policy_substitute.c ├── unicode_group_Lo_u_encoding_policy_substitute.re ├── unicode_group_Lo_x_encoding_policy_fail.c ├── unicode_group_Lo_x_encoding_policy_fail.re ├── unicode_group_Lo_x_encoding_policy_ignore.c ├── unicode_group_Lo_x_encoding_policy_ignore.re ├── unicode_group_Lo_x_encoding_policy_substitute.c ├── unicode_group_Lo_x_encoding_policy_substitute.re ├── unicode_group_Lt_8_encoding_policy_fail.c ├── unicode_group_Lt_8_encoding_policy_fail.re ├── unicode_group_Lt_8_encoding_policy_ignore.c ├── unicode_group_Lt_8_encoding_policy_ignore.re ├── unicode_group_Lt_8_encoding_policy_substitute.c ├── unicode_group_Lt_8_encoding_policy_substitute.re ├── unicode_group_Lt_u_encoding_policy_fail.c ├── unicode_group_Lt_u_encoding_policy_fail.re ├── unicode_group_Lt_u_encoding_policy_ignore.c ├── unicode_group_Lt_u_encoding_policy_ignore.re ├── unicode_group_Lt_u_encoding_policy_substitute.c ├── unicode_group_Lt_u_encoding_policy_substitute.re ├── unicode_group_Lt_x_encoding_policy_fail.c ├── unicode_group_Lt_x_encoding_policy_fail.re ├── unicode_group_Lt_x_encoding_policy_ignore.c ├── unicode_group_Lt_x_encoding_policy_ignore.re ├── unicode_group_Lt_x_encoding_policy_substitute.c ├── unicode_group_Lt_x_encoding_policy_substitute.re ├── unicode_group_Lu_8_encoding_policy_fail.c ├── unicode_group_Lu_8_encoding_policy_fail.re ├── unicode_group_Lu_8_encoding_policy_ignore.c ├── unicode_group_Lu_8_encoding_policy_ignore.re ├── unicode_group_Lu_8_encoding_policy_substitute.c ├── unicode_group_Lu_8_encoding_policy_substitute.re ├── unicode_group_Lu_u_encoding_policy_fail.c ├── unicode_group_Lu_u_encoding_policy_fail.re ├── unicode_group_Lu_u_encoding_policy_ignore.c ├── unicode_group_Lu_u_encoding_policy_ignore.re ├── unicode_group_Lu_u_encoding_policy_substitute.c ├── unicode_group_Lu_u_encoding_policy_substitute.re ├── unicode_group_Lu_x_encoding_policy_fail.c ├── unicode_group_Lu_x_encoding_policy_fail.re ├── unicode_group_Lu_x_encoding_policy_ignore.c ├── unicode_group_Lu_x_encoding_policy_ignore.re ├── unicode_group_Lu_x_encoding_policy_substitute.c ├── unicode_group_Lu_x_encoding_policy_substitute.re ├── unicode_group_M_8_encoding_policy_fail.c ├── unicode_group_M_8_encoding_policy_fail.re ├── unicode_group_M_8_encoding_policy_ignore.c ├── unicode_group_M_8_encoding_policy_ignore.re ├── unicode_group_M_8_encoding_policy_substitute.c ├── unicode_group_M_8_encoding_policy_substitute.re ├── unicode_group_M_u_encoding_policy_fail.c ├── unicode_group_M_u_encoding_policy_fail.re ├── unicode_group_M_u_encoding_policy_ignore.c ├── unicode_group_M_u_encoding_policy_ignore.re ├── unicode_group_M_u_encoding_policy_substitute.c ├── unicode_group_M_u_encoding_policy_substitute.re ├── unicode_group_M_x_encoding_policy_fail.c ├── unicode_group_M_x_encoding_policy_fail.re ├── unicode_group_M_x_encoding_policy_ignore.c ├── unicode_group_M_x_encoding_policy_ignore.re ├── unicode_group_M_x_encoding_policy_substitute.c ├── unicode_group_M_x_encoding_policy_substitute.re ├── unicode_group_Mc_8_encoding_policy_fail.c ├── unicode_group_Mc_8_encoding_policy_fail.re ├── unicode_group_Mc_8_encoding_policy_ignore.c ├── unicode_group_Mc_8_encoding_policy_ignore.re ├── unicode_group_Mc_8_encoding_policy_substitute.c ├── unicode_group_Mc_8_encoding_policy_substitute.re ├── unicode_group_Mc_u_encoding_policy_fail.c ├── unicode_group_Mc_u_encoding_policy_fail.re ├── unicode_group_Mc_u_encoding_policy_ignore.c ├── unicode_group_Mc_u_encoding_policy_ignore.re ├── unicode_group_Mc_u_encoding_policy_substitute.c ├── unicode_group_Mc_u_encoding_policy_substitute.re ├── unicode_group_Mc_x_encoding_policy_fail.c ├── unicode_group_Mc_x_encoding_policy_fail.re ├── unicode_group_Mc_x_encoding_policy_ignore.c ├── unicode_group_Mc_x_encoding_policy_ignore.re ├── unicode_group_Mc_x_encoding_policy_substitute.c ├── unicode_group_Mc_x_encoding_policy_substitute.re ├── unicode_group_Me_8_encoding_policy_fail.c ├── unicode_group_Me_8_encoding_policy_fail.re ├── unicode_group_Me_8_encoding_policy_ignore.c ├── unicode_group_Me_8_encoding_policy_ignore.re ├── unicode_group_Me_8_encoding_policy_substitute.c ├── unicode_group_Me_8_encoding_policy_substitute.re ├── unicode_group_Me_u_encoding_policy_fail.c ├── unicode_group_Me_u_encoding_policy_fail.re ├── unicode_group_Me_u_encoding_policy_ignore.c ├── unicode_group_Me_u_encoding_policy_ignore.re ├── unicode_group_Me_u_encoding_policy_substitute.c ├── unicode_group_Me_u_encoding_policy_substitute.re ├── unicode_group_Me_x_encoding_policy_fail.c ├── unicode_group_Me_x_encoding_policy_fail.re ├── unicode_group_Me_x_encoding_policy_ignore.c ├── unicode_group_Me_x_encoding_policy_ignore.re ├── unicode_group_Me_x_encoding_policy_substitute.c ├── unicode_group_Me_x_encoding_policy_substitute.re ├── unicode_group_Mn_8_encoding_policy_fail.c ├── unicode_group_Mn_8_encoding_policy_fail.re ├── unicode_group_Mn_8_encoding_policy_ignore.c ├── unicode_group_Mn_8_encoding_policy_ignore.re ├── unicode_group_Mn_8_encoding_policy_substitute.c ├── unicode_group_Mn_8_encoding_policy_substitute.re ├── unicode_group_Mn_u_encoding_policy_fail.c ├── unicode_group_Mn_u_encoding_policy_fail.re ├── unicode_group_Mn_u_encoding_policy_ignore.c ├── unicode_group_Mn_u_encoding_policy_ignore.re ├── unicode_group_Mn_u_encoding_policy_substitute.c ├── unicode_group_Mn_u_encoding_policy_substitute.re ├── unicode_group_Mn_x_encoding_policy_fail.c ├── unicode_group_Mn_x_encoding_policy_fail.re ├── unicode_group_Mn_x_encoding_policy_ignore.c ├── unicode_group_Mn_x_encoding_policy_ignore.re ├── unicode_group_Mn_x_encoding_policy_substitute.c ├── unicode_group_Mn_x_encoding_policy_substitute.re ├── unicode_group_N_8_encoding_policy_fail.c ├── unicode_group_N_8_encoding_policy_fail.re ├── unicode_group_N_8_encoding_policy_ignore.c ├── unicode_group_N_8_encoding_policy_ignore.re ├── unicode_group_N_8_encoding_policy_substitute.c ├── unicode_group_N_8_encoding_policy_substitute.re ├── unicode_group_N_u_encoding_policy_fail.c ├── unicode_group_N_u_encoding_policy_fail.re ├── unicode_group_N_u_encoding_policy_ignore.c ├── unicode_group_N_u_encoding_policy_ignore.re ├── unicode_group_N_u_encoding_policy_substitute.c ├── unicode_group_N_u_encoding_policy_substitute.re ├── unicode_group_N_x_encoding_policy_fail.c ├── unicode_group_N_x_encoding_policy_fail.re ├── unicode_group_N_x_encoding_policy_ignore.c ├── unicode_group_N_x_encoding_policy_ignore.re ├── unicode_group_N_x_encoding_policy_substitute.c ├── unicode_group_N_x_encoding_policy_substitute.re ├── unicode_group_Nd_8_encoding_policy_fail.c ├── unicode_group_Nd_8_encoding_policy_fail.re ├── unicode_group_Nd_8_encoding_policy_ignore.c ├── unicode_group_Nd_8_encoding_policy_ignore.re ├── unicode_group_Nd_8_encoding_policy_substitute.c ├── unicode_group_Nd_8_encoding_policy_substitute.re ├── unicode_group_Nd_u_encoding_policy_fail.c ├── unicode_group_Nd_u_encoding_policy_fail.re ├── unicode_group_Nd_u_encoding_policy_ignore.c ├── unicode_group_Nd_u_encoding_policy_ignore.re ├── unicode_group_Nd_u_encoding_policy_substitute.c ├── unicode_group_Nd_u_encoding_policy_substitute.re ├── unicode_group_Nd_x_encoding_policy_fail.c ├── unicode_group_Nd_x_encoding_policy_fail.re ├── unicode_group_Nd_x_encoding_policy_ignore.c ├── unicode_group_Nd_x_encoding_policy_ignore.re ├── unicode_group_Nd_x_encoding_policy_substitute.c ├── unicode_group_Nd_x_encoding_policy_substitute.re ├── unicode_group_Nl_8_encoding_policy_fail.c ├── unicode_group_Nl_8_encoding_policy_fail.re ├── unicode_group_Nl_8_encoding_policy_ignore.c ├── unicode_group_Nl_8_encoding_policy_ignore.re ├── unicode_group_Nl_8_encoding_policy_substitute.c ├── unicode_group_Nl_8_encoding_policy_substitute.re ├── unicode_group_Nl_u_encoding_policy_fail.c ├── unicode_group_Nl_u_encoding_policy_fail.re ├── unicode_group_Nl_u_encoding_policy_ignore.c ├── unicode_group_Nl_u_encoding_policy_ignore.re ├── unicode_group_Nl_u_encoding_policy_substitute.c ├── unicode_group_Nl_u_encoding_policy_substitute.re ├── unicode_group_Nl_x_encoding_policy_fail.c ├── unicode_group_Nl_x_encoding_policy_fail.re ├── unicode_group_Nl_x_encoding_policy_ignore.c ├── unicode_group_Nl_x_encoding_policy_ignore.re ├── unicode_group_Nl_x_encoding_policy_substitute.c ├── unicode_group_Nl_x_encoding_policy_substitute.re ├── unicode_group_No_8_encoding_policy_fail.c ├── unicode_group_No_8_encoding_policy_fail.re ├── unicode_group_No_8_encoding_policy_ignore.c ├── unicode_group_No_8_encoding_policy_ignore.re ├── unicode_group_No_8_encoding_policy_substitute.c ├── unicode_group_No_8_encoding_policy_substitute.re ├── unicode_group_No_u_encoding_policy_fail.c ├── unicode_group_No_u_encoding_policy_fail.re ├── unicode_group_No_u_encoding_policy_ignore.c ├── unicode_group_No_u_encoding_policy_ignore.re ├── unicode_group_No_u_encoding_policy_substitute.c ├── unicode_group_No_u_encoding_policy_substitute.re ├── unicode_group_No_x_encoding_policy_fail.c ├── unicode_group_No_x_encoding_policy_fail.re ├── unicode_group_No_x_encoding_policy_ignore.c ├── unicode_group_No_x_encoding_policy_ignore.re ├── unicode_group_No_x_encoding_policy_substitute.c ├── unicode_group_No_x_encoding_policy_substitute.re ├── unicode_group_P_8_encoding_policy_fail.c ├── unicode_group_P_8_encoding_policy_fail.re ├── unicode_group_P_8_encoding_policy_ignore.c ├── unicode_group_P_8_encoding_policy_ignore.re ├── unicode_group_P_8_encoding_policy_substitute.c ├── unicode_group_P_8_encoding_policy_substitute.re ├── unicode_group_P_u_encoding_policy_fail.c ├── unicode_group_P_u_encoding_policy_fail.re ├── unicode_group_P_u_encoding_policy_ignore.c ├── unicode_group_P_u_encoding_policy_ignore.re ├── unicode_group_P_u_encoding_policy_substitute.c ├── unicode_group_P_u_encoding_policy_substitute.re ├── unicode_group_P_x_encoding_policy_fail.c ├── unicode_group_P_x_encoding_policy_fail.re ├── unicode_group_P_x_encoding_policy_ignore.c ├── unicode_group_P_x_encoding_policy_ignore.re ├── unicode_group_P_x_encoding_policy_substitute.c ├── unicode_group_P_x_encoding_policy_substitute.re ├── unicode_group_Pc_8_encoding_policy_fail.c ├── unicode_group_Pc_8_encoding_policy_fail.re ├── unicode_group_Pc_8_encoding_policy_ignore.c ├── unicode_group_Pc_8_encoding_policy_ignore.re ├── unicode_group_Pc_8_encoding_policy_substitute.c ├── unicode_group_Pc_8_encoding_policy_substitute.re ├── unicode_group_Pc_u_encoding_policy_fail.c ├── unicode_group_Pc_u_encoding_policy_fail.re ├── unicode_group_Pc_u_encoding_policy_ignore.c ├── unicode_group_Pc_u_encoding_policy_ignore.re ├── unicode_group_Pc_u_encoding_policy_substitute.c ├── unicode_group_Pc_u_encoding_policy_substitute.re ├── unicode_group_Pc_x_encoding_policy_fail.c ├── unicode_group_Pc_x_encoding_policy_fail.re ├── unicode_group_Pc_x_encoding_policy_ignore.c ├── unicode_group_Pc_x_encoding_policy_ignore.re ├── unicode_group_Pc_x_encoding_policy_substitute.c ├── unicode_group_Pc_x_encoding_policy_substitute.re ├── unicode_group_Pd_8_encoding_policy_fail.c ├── unicode_group_Pd_8_encoding_policy_fail.re ├── unicode_group_Pd_8_encoding_policy_ignore.c ├── unicode_group_Pd_8_encoding_policy_ignore.re ├── unicode_group_Pd_8_encoding_policy_substitute.c ├── unicode_group_Pd_8_encoding_policy_substitute.re ├── unicode_group_Pd_u_encoding_policy_fail.c ├── unicode_group_Pd_u_encoding_policy_fail.re ├── unicode_group_Pd_u_encoding_policy_ignore.c ├── unicode_group_Pd_u_encoding_policy_ignore.re ├── unicode_group_Pd_u_encoding_policy_substitute.c ├── unicode_group_Pd_u_encoding_policy_substitute.re ├── unicode_group_Pd_x_encoding_policy_fail.c ├── unicode_group_Pd_x_encoding_policy_fail.re ├── unicode_group_Pd_x_encoding_policy_ignore.c ├── unicode_group_Pd_x_encoding_policy_ignore.re ├── unicode_group_Pd_x_encoding_policy_substitute.c ├── unicode_group_Pd_x_encoding_policy_substitute.re ├── unicode_group_Pe_8_encoding_policy_fail.c ├── unicode_group_Pe_8_encoding_policy_fail.re ├── unicode_group_Pe_8_encoding_policy_ignore.c ├── unicode_group_Pe_8_encoding_policy_ignore.re ├── unicode_group_Pe_8_encoding_policy_substitute.c ├── unicode_group_Pe_8_encoding_policy_substitute.re ├── unicode_group_Pe_u_encoding_policy_fail.c ├── unicode_group_Pe_u_encoding_policy_fail.re ├── unicode_group_Pe_u_encoding_policy_ignore.c ├── unicode_group_Pe_u_encoding_policy_ignore.re ├── unicode_group_Pe_u_encoding_policy_substitute.c ├── unicode_group_Pe_u_encoding_policy_substitute.re ├── unicode_group_Pe_x_encoding_policy_fail.c ├── unicode_group_Pe_x_encoding_policy_fail.re ├── unicode_group_Pe_x_encoding_policy_ignore.c ├── unicode_group_Pe_x_encoding_policy_ignore.re ├── unicode_group_Pe_x_encoding_policy_substitute.c ├── unicode_group_Pe_x_encoding_policy_substitute.re ├── unicode_group_Pf_8_encoding_policy_fail.c ├── unicode_group_Pf_8_encoding_policy_fail.re ├── unicode_group_Pf_8_encoding_policy_ignore.c ├── unicode_group_Pf_8_encoding_policy_ignore.re ├── unicode_group_Pf_8_encoding_policy_substitute.c ├── unicode_group_Pf_8_encoding_policy_substitute.re ├── unicode_group_Pf_u_encoding_policy_fail.c ├── unicode_group_Pf_u_encoding_policy_fail.re ├── unicode_group_Pf_u_encoding_policy_ignore.c ├── unicode_group_Pf_u_encoding_policy_ignore.re ├── unicode_group_Pf_u_encoding_policy_substitute.c ├── unicode_group_Pf_u_encoding_policy_substitute.re ├── unicode_group_Pf_x_encoding_policy_fail.c ├── unicode_group_Pf_x_encoding_policy_fail.re ├── unicode_group_Pf_x_encoding_policy_ignore.c ├── unicode_group_Pf_x_encoding_policy_ignore.re ├── unicode_group_Pf_x_encoding_policy_substitute.c ├── unicode_group_Pf_x_encoding_policy_substitute.re ├── unicode_group_Pi_8_encoding_policy_fail.c ├── unicode_group_Pi_8_encoding_policy_fail.re ├── unicode_group_Pi_8_encoding_policy_ignore.c ├── unicode_group_Pi_8_encoding_policy_ignore.re ├── unicode_group_Pi_8_encoding_policy_substitute.c ├── unicode_group_Pi_8_encoding_policy_substitute.re ├── unicode_group_Pi_u_encoding_policy_fail.c ├── unicode_group_Pi_u_encoding_policy_fail.re ├── unicode_group_Pi_u_encoding_policy_ignore.c ├── unicode_group_Pi_u_encoding_policy_ignore.re ├── unicode_group_Pi_u_encoding_policy_substitute.c ├── unicode_group_Pi_u_encoding_policy_substitute.re ├── unicode_group_Pi_x_encoding_policy_fail.c ├── unicode_group_Pi_x_encoding_policy_fail.re ├── unicode_group_Pi_x_encoding_policy_ignore.c ├── unicode_group_Pi_x_encoding_policy_ignore.re ├── unicode_group_Pi_x_encoding_policy_substitute.c ├── unicode_group_Pi_x_encoding_policy_substitute.re ├── unicode_group_Po_8_encoding_policy_fail.c ├── unicode_group_Po_8_encoding_policy_fail.re ├── unicode_group_Po_8_encoding_policy_ignore.c ├── unicode_group_Po_8_encoding_policy_ignore.re ├── unicode_group_Po_8_encoding_policy_substitute.c ├── unicode_group_Po_8_encoding_policy_substitute.re ├── unicode_group_Po_u_encoding_policy_fail.c ├── unicode_group_Po_u_encoding_policy_fail.re ├── unicode_group_Po_u_encoding_policy_ignore.c ├── unicode_group_Po_u_encoding_policy_ignore.re ├── unicode_group_Po_u_encoding_policy_substitute.c ├── unicode_group_Po_u_encoding_policy_substitute.re ├── unicode_group_Po_x_encoding_policy_fail.c ├── unicode_group_Po_x_encoding_policy_fail.re ├── unicode_group_Po_x_encoding_policy_ignore.c ├── unicode_group_Po_x_encoding_policy_ignore.re ├── unicode_group_Po_x_encoding_policy_substitute.c ├── unicode_group_Po_x_encoding_policy_substitute.re ├── unicode_group_Ps_8_encoding_policy_fail.c ├── unicode_group_Ps_8_encoding_policy_fail.re ├── unicode_group_Ps_8_encoding_policy_ignore.c ├── unicode_group_Ps_8_encoding_policy_ignore.re ├── unicode_group_Ps_8_encoding_policy_substitute.c ├── unicode_group_Ps_8_encoding_policy_substitute.re ├── unicode_group_Ps_u_encoding_policy_fail.c ├── unicode_group_Ps_u_encoding_policy_fail.re ├── unicode_group_Ps_u_encoding_policy_ignore.c ├── unicode_group_Ps_u_encoding_policy_ignore.re ├── unicode_group_Ps_u_encoding_policy_substitute.c ├── unicode_group_Ps_u_encoding_policy_substitute.re ├── unicode_group_Ps_x_encoding_policy_fail.c ├── unicode_group_Ps_x_encoding_policy_fail.re ├── unicode_group_Ps_x_encoding_policy_ignore.c ├── unicode_group_Ps_x_encoding_policy_ignore.re ├── unicode_group_Ps_x_encoding_policy_substitute.c ├── unicode_group_Ps_x_encoding_policy_substitute.re ├── unicode_group_S_8_encoding_policy_fail.c ├── unicode_group_S_8_encoding_policy_fail.re ├── unicode_group_S_8_encoding_policy_ignore.c ├── unicode_group_S_8_encoding_policy_ignore.re ├── unicode_group_S_8_encoding_policy_substitute.c ├── unicode_group_S_8_encoding_policy_substitute.re ├── unicode_group_S_u_encoding_policy_fail.c ├── unicode_group_S_u_encoding_policy_fail.re ├── unicode_group_S_u_encoding_policy_ignore.c ├── unicode_group_S_u_encoding_policy_ignore.re ├── unicode_group_S_u_encoding_policy_substitute.c ├── unicode_group_S_u_encoding_policy_substitute.re ├── unicode_group_S_x_encoding_policy_fail.c ├── unicode_group_S_x_encoding_policy_fail.re ├── unicode_group_S_x_encoding_policy_ignore.c ├── unicode_group_S_x_encoding_policy_ignore.re ├── unicode_group_S_x_encoding_policy_substitute.c ├── unicode_group_S_x_encoding_policy_substitute.re ├── unicode_group_Sc_8_encoding_policy_fail.c ├── unicode_group_Sc_8_encoding_policy_fail.re ├── unicode_group_Sc_8_encoding_policy_ignore.c ├── unicode_group_Sc_8_encoding_policy_ignore.re ├── unicode_group_Sc_8_encoding_policy_substitute.c ├── unicode_group_Sc_8_encoding_policy_substitute.re ├── unicode_group_Sc_u_encoding_policy_fail.c ├── unicode_group_Sc_u_encoding_policy_fail.re ├── unicode_group_Sc_u_encoding_policy_ignore.c ├── unicode_group_Sc_u_encoding_policy_ignore.re ├── unicode_group_Sc_u_encoding_policy_substitute.c ├── unicode_group_Sc_u_encoding_policy_substitute.re ├── unicode_group_Sc_x_encoding_policy_fail.c ├── unicode_group_Sc_x_encoding_policy_fail.re ├── unicode_group_Sc_x_encoding_policy_ignore.c ├── unicode_group_Sc_x_encoding_policy_ignore.re ├── unicode_group_Sc_x_encoding_policy_substitute.c ├── unicode_group_Sc_x_encoding_policy_substitute.re ├── unicode_group_Sk_8_encoding_policy_fail.c ├── unicode_group_Sk_8_encoding_policy_fail.re ├── unicode_group_Sk_8_encoding_policy_ignore.c ├── unicode_group_Sk_8_encoding_policy_ignore.re ├── unicode_group_Sk_8_encoding_policy_substitute.c ├── unicode_group_Sk_8_encoding_policy_substitute.re ├── unicode_group_Sk_u_encoding_policy_fail.c ├── unicode_group_Sk_u_encoding_policy_fail.re ├── unicode_group_Sk_u_encoding_policy_ignore.c ├── unicode_group_Sk_u_encoding_policy_ignore.re ├── unicode_group_Sk_u_encoding_policy_substitute.c ├── unicode_group_Sk_u_encoding_policy_substitute.re ├── unicode_group_Sk_x_encoding_policy_fail.c ├── unicode_group_Sk_x_encoding_policy_fail.re ├── unicode_group_Sk_x_encoding_policy_ignore.c ├── unicode_group_Sk_x_encoding_policy_ignore.re ├── unicode_group_Sk_x_encoding_policy_substitute.c ├── unicode_group_Sk_x_encoding_policy_substitute.re ├── unicode_group_Sm_8_encoding_policy_fail.c ├── unicode_group_Sm_8_encoding_policy_fail.re ├── unicode_group_Sm_8_encoding_policy_ignore.c ├── unicode_group_Sm_8_encoding_policy_ignore.re ├── unicode_group_Sm_8_encoding_policy_substitute.c ├── unicode_group_Sm_8_encoding_policy_substitute.re ├── unicode_group_Sm_u_encoding_policy_fail.c ├── unicode_group_Sm_u_encoding_policy_fail.re ├── unicode_group_Sm_u_encoding_policy_ignore.c ├── unicode_group_Sm_u_encoding_policy_ignore.re ├── unicode_group_Sm_u_encoding_policy_substitute.c ├── unicode_group_Sm_u_encoding_policy_substitute.re ├── unicode_group_Sm_x_encoding_policy_fail.c ├── unicode_group_Sm_x_encoding_policy_fail.re ├── unicode_group_Sm_x_encoding_policy_ignore.c ├── unicode_group_Sm_x_encoding_policy_ignore.re ├── unicode_group_Sm_x_encoding_policy_substitute.c ├── unicode_group_Sm_x_encoding_policy_substitute.re ├── unicode_group_So_8_encoding_policy_fail.c ├── unicode_group_So_8_encoding_policy_fail.re ├── unicode_group_So_8_encoding_policy_ignore.c ├── unicode_group_So_8_encoding_policy_ignore.re ├── unicode_group_So_8_encoding_policy_substitute.c ├── unicode_group_So_8_encoding_policy_substitute.re ├── unicode_group_So_u_encoding_policy_fail.c ├── unicode_group_So_u_encoding_policy_fail.re ├── unicode_group_So_u_encoding_policy_ignore.c ├── unicode_group_So_u_encoding_policy_ignore.re ├── unicode_group_So_u_encoding_policy_substitute.c ├── unicode_group_So_u_encoding_policy_substitute.re ├── unicode_group_So_x_encoding_policy_fail.c ├── unicode_group_So_x_encoding_policy_fail.re ├── unicode_group_So_x_encoding_policy_ignore.c ├── unicode_group_So_x_encoding_policy_ignore.re ├── unicode_group_So_x_encoding_policy_substitute.c ├── unicode_group_So_x_encoding_policy_substitute.re ├── unicode_group_Z_8_encoding_policy_fail.c ├── unicode_group_Z_8_encoding_policy_fail.re ├── unicode_group_Z_8_encoding_policy_ignore.c ├── unicode_group_Z_8_encoding_policy_ignore.re ├── unicode_group_Z_8_encoding_policy_substitute.c ├── unicode_group_Z_8_encoding_policy_substitute.re ├── unicode_group_Z_u_encoding_policy_fail.c ├── unicode_group_Z_u_encoding_policy_fail.re ├── unicode_group_Z_u_encoding_policy_ignore.c ├── unicode_group_Z_u_encoding_policy_ignore.re ├── unicode_group_Z_u_encoding_policy_substitute.c ├── unicode_group_Z_u_encoding_policy_substitute.re ├── unicode_group_Z_x_encoding_policy_fail.c ├── unicode_group_Z_x_encoding_policy_fail.re ├── unicode_group_Z_x_encoding_policy_ignore.c ├── unicode_group_Z_x_encoding_policy_ignore.re ├── unicode_group_Z_x_encoding_policy_substitute.c ├── unicode_group_Z_x_encoding_policy_substitute.re ├── unicode_group_Zl_8_encoding_policy_fail.c ├── unicode_group_Zl_8_encoding_policy_fail.re ├── unicode_group_Zl_8_encoding_policy_ignore.c ├── unicode_group_Zl_8_encoding_policy_ignore.re ├── unicode_group_Zl_8_encoding_policy_substitute.c ├── unicode_group_Zl_8_encoding_policy_substitute.re ├── unicode_group_Zl_u_encoding_policy_fail.c ├── unicode_group_Zl_u_encoding_policy_fail.re ├── unicode_group_Zl_u_encoding_policy_ignore.c ├── unicode_group_Zl_u_encoding_policy_ignore.re ├── unicode_group_Zl_u_encoding_policy_substitute.c ├── unicode_group_Zl_u_encoding_policy_substitute.re ├── unicode_group_Zl_x_encoding_policy_fail.c ├── unicode_group_Zl_x_encoding_policy_fail.re ├── unicode_group_Zl_x_encoding_policy_ignore.c ├── unicode_group_Zl_x_encoding_policy_ignore.re ├── unicode_group_Zl_x_encoding_policy_substitute.c ├── unicode_group_Zl_x_encoding_policy_substitute.re ├── unicode_group_Zp_8_encoding_policy_fail.c ├── unicode_group_Zp_8_encoding_policy_fail.re ├── unicode_group_Zp_8_encoding_policy_ignore.c ├── unicode_group_Zp_8_encoding_policy_ignore.re ├── unicode_group_Zp_8_encoding_policy_substitute.c ├── unicode_group_Zp_8_encoding_policy_substitute.re ├── unicode_group_Zp_u_encoding_policy_fail.c ├── unicode_group_Zp_u_encoding_policy_fail.re ├── unicode_group_Zp_u_encoding_policy_ignore.c ├── unicode_group_Zp_u_encoding_policy_ignore.re ├── unicode_group_Zp_u_encoding_policy_substitute.c ├── unicode_group_Zp_u_encoding_policy_substitute.re ├── unicode_group_Zp_x_encoding_policy_fail.c ├── unicode_group_Zp_x_encoding_policy_fail.re ├── unicode_group_Zp_x_encoding_policy_ignore.c ├── unicode_group_Zp_x_encoding_policy_ignore.re ├── unicode_group_Zp_x_encoding_policy_substitute.c ├── unicode_group_Zp_x_encoding_policy_substitute.re ├── unicode_group_Zs_8_encoding_policy_fail.c ├── unicode_group_Zs_8_encoding_policy_fail.re ├── unicode_group_Zs_8_encoding_policy_ignore.c ├── unicode_group_Zs_8_encoding_policy_ignore.re ├── unicode_group_Zs_8_encoding_policy_substitute.c ├── unicode_group_Zs_8_encoding_policy_substitute.re ├── unicode_group_Zs_u_encoding_policy_fail.c ├── unicode_group_Zs_u_encoding_policy_fail.re ├── unicode_group_Zs_u_encoding_policy_ignore.c ├── unicode_group_Zs_u_encoding_policy_ignore.re ├── unicode_group_Zs_u_encoding_policy_substitute.c ├── unicode_group_Zs_u_encoding_policy_substitute.re ├── unicode_group_Zs_x_encoding_policy_fail.c ├── unicode_group_Zs_x_encoding_policy_fail.re ├── unicode_group_Zs_x_encoding_policy_ignore.c ├── unicode_group_Zs_x_encoding_policy_ignore.re ├── unicode_group_Zs_x_encoding_policy_substitute.c ├── unicode_group_Zs_x_encoding_policy_substitute.re ├── unicode_groups.hs ├── utf32_0x10000.c ├── utf32_0x10000.re ├── utf8-full_range-2.c ├── utf8-full_range-2.re ├── utf8-range_0x00_0x7f.c ├── utf8-range_0x00_0x7f.re ├── utf8-range_0x100000_0x10ffff.c ├── utf8-range_0x100000_0x10ffff.re ├── utf8-range_0x10000_0x3ffff.c ├── utf8-range_0x10000_0x3ffff.re ├── utf8-range_0x1000_0xffff.c ├── utf8-range_0x1000_0xffff.re ├── utf8-range_0x40000_0xfffff.c ├── utf8-range_0x40000_0xfffff.re ├── utf8-range_0x800_0xfff.c ├── utf8-range_0x800_0xfff.re ├── utf8-range_0x80_0x7ff.c ├── utf8-range_0x80_0x7ff.re ├── utf8-range_single_symbol.c ├── utf8-range_single_symbol.re ├── utf8_literals.c ├── utf8_literals.re ├── utf8_names.c └── utf8_names.re ├── eof ├── eof_00.c ├── eof_00.re ├── eof_01.c ├── eof_01.re ├── eof_01_eager_skip.c ├── eof_01_eager_skip.re ├── eof_02.c ├── eof_02.re ├── eof_03.c ├── eof_03.re ├── eof_04_8.c ├── eof_04_8.re ├── eof_04_e.c ├── eof_04_e.re ├── eof_04_u.c ├── eof_04_u.re ├── eof_04_w.c ├── eof_04_w.re ├── eof_04_x.c ├── eof_04_x.re ├── eof_05.c ├── eof_05.re ├── eof_06.c ├── eof_06.re ├── eof_07.c ├── eof_07.re ├── eof_08.c ├── eof_08.re ├── eof_08_8.c ├── eof_08_8.re ├── eof_08_u.c ├── eof_08_u.re ├── eof_08_x.c ├── eof_08_x.re ├── eof_09.c ├── eof_09.re ├── eof_10_fill.c ├── eof_10_fill.re ├── eof_11_multiblock.c ├── eof_11_multiblock.re ├── eof_12_conditions.c ├── eof_12_conditions.re ├── eof_at_the_end.c ├── eof_at_the_end.re ├── eof_fallthru.c ├── eof_fallthru.re ├── eof_in_the_middle.c ├── eof_in_the_middle.re ├── eof_yyfill_naked_1.c ├── eof_yyfill_naked_1.re ├── eof_yyfill_naked_2.c ├── eof_yyfill_naked_2.re ├── generalized_tags.c ├── generalized_tags.re ├── goto_elision.c ├── goto_elision.re ├── goto_elision_f.c ├── goto_elision_f.re ├── nonblocking_push.c ├── nonblocking_push.re ├── nullable_loop.c ├── nullable_loop.re ├── sentinel_01.c ├── sentinel_01.re ├── sentinel_02.c ├── sentinel_02.re ├── shadowrule_01.c ├── shadowrule_01.re ├── shadowrule_02_hoist.c ├── shadowrule_02_hoist.re ├── shadowrule_03_hoist.c ├── shadowrule_03_hoist.re ├── shadowrule_04_hoist.c ├── shadowrule_04_hoist.re ├── shadowrule_05.c ├── shadowrule_05.re ├── utf8_any.c └── utf8_any.re ├── error1.c ├── error1.re ├── error10.c ├── error10.re ├── error11.c ├── error11.re ├── error12.c ├── error12.re ├── error13.c ├── error13.re ├── error13_1.c ├── error13_1.re ├── error14.c ├── error14.re ├── error14_1.c ├── error14_1.re ├── error15.c ├── error15.re ├── error2.c ├── error2.re ├── error3.c ├── error3.re ├── error4.c ├── error4.re ├── error5.c ├── error5.re ├── error6.c ├── error6.re ├── error7.c ├── error7.re ├── error8.c ├── error8.re ├── error9.c ├── error9.re ├── flex_syntax ├── digits.c ├── digits.re ├── flex_syntax.c ├── flex_syntax.re ├── namedef.c ├── namedef.re ├── namedef_error.c ├── namedef_error.re ├── raw_utf8.go └── raw_utf8.re ├── header ├── header_01.c ├── header_01.re ├── header_02.c ├── header_02.re ├── header_03.c └── header_03.re ├── include ├── include001.c ├── include001.re ├── include001.re.b.inc ├── include001.re.c.inc ├── include002.c ├── include002.re ├── include003.c ├── include003.re ├── include003.re.b.inc ├── include003.re.c.inc ├── include004_inline.c ├── include004_inline.re ├── include004_inline.re.inc ├── include005_redef_error.c ├── include005_redef_error.re ├── include005_redef_error.re.inc ├── include006.re.inc ├── include006_syntax_error.c ├── include006_syntax_error.re ├── include007.c ├── include007.re ├── include008.re.b.inc ├── include008.re.c.inc ├── include008_header.c ├── include008_header.re └── nested │ ├── include002.re.b.inc │ ├── include002.re.c.inc │ ├── include007.re.inc │ └── nested │ ├── include002.re.bd.inc │ ├── include002.re.be.inc │ ├── include002.re.cd.inc │ ├── include002.re.ce.inc │ └── include007.re.inc ├── input1.c ├── input1.re ├── input10.c ├── input10.re ├── input10_b.c ├── input10_b.re ├── input10_s.c ├── input10_s.re ├── input11.c ├── input11.re ├── input11_b.c ├── input11_b.re ├── input11_b_eager_skip.c ├── input11_b_eager_skip.re ├── input11_i.c ├── input11_i.re ├── input11_s.c ├── input11_s.re ├── input13.c ├── input13.re ├── input2.c ├── input2.re ├── input2_b.c ├── input2_b.re ├── input3.c ├── input3.re ├── input4.c ├── input4.re ├── input4__empty_class_error.c ├── input4__empty_class_error.re ├── input4__empty_class_match_empty.c ├── input4__empty_class_match_empty.re ├── input4__empty_class_match_none.c ├── input4__empty_class_match_none.re ├── input5.c ├── input5.re ├── input6.c ├── input6.re ├── input6__empty_class_error.c ├── input6__empty_class_error.re ├── input6__empty_class_match_empty.c ├── input6__empty_class_match_empty.re ├── input6__empty_class_match_none.c ├── input6__empty_class_match_none.re ├── input7.c ├── input7.re ├── input8.c ├── input8.re ├── input8_b.c ├── input8_b.re ├── input8_g.c ├── input8_g.re ├── input9.c ├── input9.re ├── input_custom_default.c ├── input_custom_default.re ├── input_custom_fgetc.c ├── input_custom_fgetc.re ├── input_custom_istringstream.c ├── input_custom_istringstream.re ├── input_custom_mjson.c ├── input_custom_mjson.re ├── layout ├── condition_lists.c ├── condition_lists.re ├── flex_braces.c ├── flex_braces.re ├── semact_multiline.c ├── semact_multiline.re ├── semact_multiline_flex_syntax.c ├── semact_multiline_flex_syntax.re ├── semact_oneline.c ├── semact_oneline.re ├── semact_oneline_flex_syntax.c └── semact_oneline_flex_syntax.re ├── line-01.c ├── line-01.re ├── line-02.c ├── line-02.re ├── main.c ├── main.re ├── messages ├── error_block_start.c ├── error_block_start.re ├── error_block_start_getstate.c ├── error_block_start_getstate.re ├── error_block_start_ignore.c ├── error_block_start_ignore.re ├── error_block_start_max.c ├── error_block_start_max.re ├── error_block_start_maxnmatch.c ├── error_block_start_maxnmatch.re ├── error_block_start_mtags.c ├── error_block_start_mtags.re ├── error_block_start_rules.c ├── error_block_start_rules.re ├── error_block_start_stags.c ├── error_block_start_stags.re ├── error_block_start_types.c ├── error_block_start_types.re ├── error_block_start_use.c ├── error_block_start_use.re ├── error_getstate_without_option.c ├── error_getstate_without_option.re ├── error_header_directive.c ├── error_header_directive.re ├── error_include_directive.c ├── error_include_directive.re ├── large_regexp_01.c ├── large_regexp_01.re ├── large_regexp_02.c ├── large_regexp_02.re ├── large_regexp_03.c ├── large_regexp_03.re ├── msg_00.c ├── msg_00.re ├── msg_00_i_location_format_gnu.c ├── msg_00_i_location_format_gnu.re ├── msg_01.c ├── msg_01.re ├── msg_01_i_location_format_msvc.c ├── msg_01_i_location_format_msvc.re ├── msg_02.c ├── msg_02.re ├── msg_02_i_location_format_gnu.c ├── msg_02_i_location_format_gnu.re ├── msg_03.c ├── msg_03.re ├── msg_03_i_location_format_gnu.c ├── msg_03_i_location_format_gnu.re ├── msg_04.c ├── msg_04.re ├── msg_05.c ├── msg_05.re ├── msg_06.c ├── msg_06.re ├── msg_07.c ├── msg_07.re ├── msg_08.c ├── msg_08.re ├── msg_09.c ├── msg_09.re ├── msg_10.c ├── msg_10.re ├── msg_12.c ├── msg_12.re ├── nested │ └── msg_02.re.inc ├── nullable.c ├── nullable.re ├── repetition_swapped_bounds.c ├── repetition_swapped_bounds.re ├── storable_state_without_yyfill.c └── storable_state_without_yyfill.re ├── newlines ├── nl_01.c └── nl_01.re ├── overflow-1.c ├── overflow-1.re ├── overflow-2.c ├── overflow-2.re ├── overflow-3.c ├── overflow-3.re ├── overflow-4.c ├── overflow-4.re ├── push.c ├── push.re ├── push_f.c ├── push_f.re ├── push_fb.c ├── push_fb.re ├── push_fg.c ├── push_fg.re ├── push_fs.c ├── push_fs.re ├── real_world ├── c.c ├── c.re ├── cmmap.c ├── cmmap.re ├── cnokw.c ├── cnokw.re ├── cpp.c ├── cpp.re ├── modula.c ├── modula.re ├── ninja_depfile_parser.c ├── ninja_depfile_parser.re ├── ninja_lexer.c ├── ninja_lexer.re ├── parse_date.c ├── parse_date.re ├── parse_date_1_78.c ├── parse_date_1_78.re ├── parse_date_b.c ├── parse_date_b.re ├── parse_date_db.c ├── parse_date_db.re ├── parse_date_g.c ├── parse_date_g.re ├── parse_date_s.c ├── parse_date_s.re ├── php20140822_zend_language_scanner.c ├── php20140822_zend_language_scanner.re ├── php20150211_json_scanner.c ├── php20150211_json_scanner.re ├── php20150211_parse_date.c ├── php20150211_parse_date.re ├── php20150211_parse_iso_intervals.c ├── php20150211_parse_iso_intervals.re ├── php20150211_pdo_sql_parser.c ├── php20150211_pdo_sql_parser.re ├── php20150211_pdo_sql_parser_trimmed.c ├── php20150211_pdo_sql_parser_trimmed.re ├── php20150211_phar_path_check.c ├── php20150211_phar_path_check.re ├── php20150211_phpdbg_lexer.c ├── php20150211_phpdbg_lexer.re ├── php20150211_url_scanner_ex.c ├── php20150211_url_scanner_ex.re ├── php20150211_var_unserializer.c ├── php20150211_var_unserializer.re ├── php20150211_zend_ini_scanner.c ├── php20150211_zend_ini_scanner.re ├── php20150211_zend_ini_scanner_trimmed.c ├── php20150211_zend_ini_scanner_trimmed.re ├── php20150211_zend_ini_scanner_trimmed_ic_flex_syntax.c ├── php20150211_zend_ini_scanner_trimmed_ic_flex_syntax.re ├── php20150211_zend_ini_scanner_trimmed_minimal_wb_bug.c ├── php20150211_zend_ini_scanner_trimmed_minimal_wb_bug.re ├── php20150211_zend_language_scanner.c ├── php20150211_zend_language_scanner.re ├── rexx.c ├── rexx.re ├── rexx__empty_class_error.c ├── rexx__empty_class_error.re ├── rexx__empty_class_match_empty.c ├── rexx__empty_class_match_empty.re ├── rexx__empty_class_match_none.c ├── rexx__empty_class_match_none.re ├── scanner.c ├── scanner.re ├── scanner_fs.c ├── scanner_fs.re ├── scanner_re2c.c ├── scanner_re2c.re ├── scanner_re2c_default.c ├── scanner_re2c_default.re ├── scanner_s.c └── scanner_s.re ├── repeater.c ├── repeater.re ├── repeater2.c ├── repeater2.re ├── repeater_overflow.c ├── repeater_overflow.re ├── reuse ├── config_scope.c ├── config_scope.re ├── inline_use_conditions.c ├── inline_use_conditions.re ├── inline_use_error_nonexisting_block.c ├── inline_use_error_nonexisting_block.re ├── inline_use_merge_blocks.c ├── inline_use_merge_blocks.re ├── inline_use_syntax_error.c ├── inline_use_syntax_error.re ├── named_blocks_01.c ├── named_blocks_01.re ├── named_blocks_02.c ├── named_blocks_02.re ├── named_blocks_error_dup_name.c ├── named_blocks_error_dup_name.re ├── namedef_scope_01.c ├── namedef_scope_01.re ├── namedef_scope_02.c ├── namedef_scope_02.re ├── namedef_scope_03.c ├── namedef_scope_03.re ├── namedef_scope_04.c ├── namedef_scope_04.re ├── namedef_scope_05.c ├── namedef_scope_05.re ├── namedef_scope_06.c ├── namedef_scope_06.re ├── repeat-01.c ├── repeat-01.re ├── repeat-02.c ├── repeat-02.re ├── repeat-03.c ├── repeat-03.re ├── repeat-04.c ├── repeat-04.re ├── repeat-05.c ├── repeat-05.re ├── repeat-06.c ├── repeat-06.re ├── repeat-07.c ├── repeat-07.re ├── repeat-07_default.c ├── repeat-07_default.re ├── repeat-08.c ├── repeat-08.re ├── repeat-09.c ├── repeat-09.re ├── reuse_and_states.c ├── reuse_and_states.re ├── reuse_and_states_and_conditions.c ├── reuse_and_states_and_conditions.re ├── reuse_conds_default_0.c ├── reuse_conds_default_0.re ├── reuse_conds_default_1.c ├── reuse_conds_default_1.re ├── reuse_conds_setup_0.c ├── reuse_conds_setup_0.re ├── reuse_conds_setup_1.c ├── reuse_conds_setup_1.re ├── reuse_conds_setup_1_cgir_eager_skip.c ├── reuse_conds_setup_1_cgir_eager_skip.re ├── reuse_mixed_blocks_01.c ├── reuse_mixed_blocks_01.re ├── reuse_mixed_blocks_02.c ├── reuse_mixed_blocks_02.re ├── reuse_mixed_blocks_03.c ├── reuse_mixed_blocks_03.re ├── reuse_mixed_blocks_04.c └── reuse_mixed_blocks_04.re ├── sample.c ├── sample.re ├── segfault_full_range_star.c ├── segfault_full_range_star.re ├── simple.c ├── simple.re ├── simple_default.c ├── simple_default.re ├── skeleton ├── control_flow_fail.c ├── control_flow_fail.re ├── control_flow_ok.c ├── control_flow_ok.re ├── control_flow_yymarker_fail.c ├── control_flow_yymarker_fail.re ├── control_flow_yymarker_ok.c ├── control_flow_yymarker_ok.re ├── control_flow_yymarker_yyaccept_fail.c ├── control_flow_yymarker_yyaccept_fail.re ├── control_flow_yymarker_yyaccept_ok.c ├── control_flow_yymarker_yyaccept_ok.re ├── error_golang.go ├── error_golang.re ├── input_custom_default.c ├── input_custom_default.re ├── php20150211_phar_path_check.c ├── php20150211_phar_path_check.re ├── php20150211_url_scanner_ex.c ├── php20150211_url_scanner_ex.re ├── repeat-07_default.c ├── repeat-07_default.re ├── unicode_any.c ├── unicode_any.re ├── unicode_any_i8_skeleton.c ├── unicode_any_i8_skeleton.re ├── unicode_any_iu_skeleton.c └── unicode_any_iu_skeleton.re ├── strip_001.c ├── strip_001.re ├── strip_002.c ├── strip_002.re ├── strip_003.c ├── strip_003.re ├── tags ├── ambiguity │ ├── alt0.c │ ├── alt0.re │ ├── alt1.c │ ├── alt1.re │ ├── alt2.c │ ├── alt2.re │ ├── cat1.c │ ├── cat1.re │ ├── cat3.c │ ├── cat3.re │ ├── cat4.c │ ├── cat4.re │ ├── iter.c │ └── iter.re ├── bench_http_rfc7230.c ├── bench_http_rfc7230.re ├── bench_http_simple.c ├── bench_http_simple.re ├── bench_uri_rfc3986.c ├── bench_uri_rfc3986.re ├── bench_uri_simple.c ├── bench_uri_simple.re ├── bug121_fix.c ├── bug121_fix.re ├── bug121_fix_i.c ├── bug121_fix_i.re ├── bug121_var_multiple.c ├── bug121_var_multiple.re ├── bug121_var_multiple_i_input_custom.c ├── bug121_var_multiple_i_input_custom.re ├── bug121_var_multiple_i_tags.c ├── bug121_var_multiple_i_tags.re ├── bug121_var_multiple_i_tags_eager_skip.c ├── bug121_var_multiple_i_tags_eager_skip.re ├── bug121_var_multiple_i_tags_eager_skip_input_custom.c ├── bug121_var_multiple_i_tags_eager_skip_input_custom.re ├── bug121_var_multiple_i_tags_input_custom.c ├── bug121_var_multiple_i_tags_input_custom.re ├── bug121_var_single.c ├── bug121_var_single.re ├── bug121_var_single_i_input_custom.c ├── bug121_var_single_i_input_custom.re ├── captvars_with_lookahead.c ├── captvars_with_lookahead.re ├── captvars_with_lookahead_posix.c ├── captvars_with_lookahead_posix.re ├── cond_star0.c ├── cond_star0.re ├── cond_star0_ci.c ├── cond_star0_ci.re ├── cond_star1.c ├── cond_star1.re ├── cond_star1_ci_input_custom.c ├── cond_star1_ci_input_custom.re ├── cond_star2.c ├── cond_star2.re ├── conf1.c ├── conf1.re ├── conf1_i_tags_input_custom.c ├── conf1_i_tags_input_custom.re ├── conf2.c ├── conf2.re ├── conf2_i_tags_input_custom.c ├── conf2_i_tags_input_custom.re ├── conf3.c ├── conf3.re ├── conf3_i_tags_input_custom.c ├── conf3_i_tags_input_custom.re ├── copy_coalescing1.c ├── copy_coalescing1.re ├── copy_coalescing1_nofix.c ├── copy_coalescing1_nofix.re ├── copy_coalescing2.c ├── copy_coalescing2.re ├── copy_save.c ├── copy_save.re ├── counter1.c ├── counter1.re ├── dedup0.c ├── dedup0.re ├── dedup0_i_input_custom.c ├── dedup0_i_input_custom.re ├── dedup1.c ├── dedup1.re ├── dedup1_i.c ├── dedup1_i.re ├── dedup2.c ├── dedup2.re ├── dedup2_i.c ├── dedup2_i.re ├── dedup3.c ├── dedup3.re ├── dedup3_i_input_custom.c ├── dedup3_i_input_custom.re ├── dedup4.c ├── dedup4.re ├── dedup5.c ├── dedup5.re ├── error_1.c ├── error_1.re ├── error_2.c ├── error_2.re ├── exponential_bottoms.c ├── exponential_bottoms.re ├── fallback1.c ├── fallback1.re ├── fallback2.c ├── fallback2.re ├── fallback3.c ├── fallback3.re ├── fallback3_eof.c ├── fallback3_eof.re ├── fallback4.c ├── fallback4.re ├── fallback5.c ├── fallback5.re ├── fallback6.c ├── fallback6.re ├── fix2.c ├── fix2.re ├── fix2_trail.c ├── fix2_trail.re ├── fix2_trail_i_tags_input_custom.c ├── fix2_trail_i_tags_input_custom.re ├── fix3.c ├── fix3.re ├── fix3_trail.c ├── fix3_trail.re ├── fix3_trail_i_tags.c ├── fix3_trail_i_tags.re ├── fix4.c ├── fix4.re ├── fix4_trail.c ├── fix4_trail.re ├── fix4_trail_i_tags_input_custom.c ├── fix4_trail_i_tags_input_custom.re ├── fix5.c ├── fix5.re ├── fix5_trail.c ├── fix5_trail.re ├── fix5_trail_i_tags_input_custom.c ├── fix5_trail_i_tags_input_custom.re ├── fixed_repetition_count.c ├── fixed_repetition_count.re ├── interference.c ├── interference.re ├── iter_plus.c ├── iter_plus.re ├── map_ord1.c ├── map_ord1.re ├── map_ord2.c ├── map_ord2.re ├── minimization.c ├── minimization.re ├── skip_tags_disorder.c ├── skip_tags_disorder.re ├── tags_in_trail.c ├── tags_in_trail.re ├── tags_in_trail_fixed.c ├── tags_in_trail_fixed.re ├── tags_with_bitmaps.c ├── tags_with_bitmaps.re ├── topsort1.c ├── topsort1.re ├── topsort2.c ├── topsort2.re ├── twopass.c ├── twopass.re ├── twopass_nofix.c ├── twopass_nofix.re ├── uniq.c ├── uniq.re ├── uniq_nofix.c ├── uniq_nofix.re ├── yyaccept1.c └── yyaccept1.re ├── wunreachable_rules.c ├── wunreachable_rules.re ├── yyaccept_initial.c ├── yyaccept_initial.re ├── yyaccept_missing.c ├── yyaccept_missing.re ├── yyaccept_missing_bci_eager_skip.c └── yyaccept_missing_bci_eager_skip.re /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/BUILD.md -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /IDEAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/IDEAS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.lib.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/Makefile.lib.am -------------------------------------------------------------------------------- /NO_WARRANTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/NO_WARRANTY -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/WORKSPACE -------------------------------------------------------------------------------- /WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /add-release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/add-release.txt -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -i -W all 4 | -------------------------------------------------------------------------------- /bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bazel/BUILD.bazel -------------------------------------------------------------------------------- /bazel/re2c.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bazel/re2c.bzl -------------------------------------------------------------------------------- /bazel/re2c_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bazel/re2c_config.h -------------------------------------------------------------------------------- /benchmarks/_data/alt1/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/alt1/small -------------------------------------------------------------------------------- /benchmarks/_data/alt2/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/alt2/small -------------------------------------------------------------------------------- /benchmarks/_data/alt4/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/alt4/small -------------------------------------------------------------------------------- /benchmarks/_data/cat2/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/cat2/small -------------------------------------------------------------------------------- /benchmarks/_data/cat4/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/cat4/small -------------------------------------------------------------------------------- /benchmarks/_data/cat8/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/cat8/small -------------------------------------------------------------------------------- /benchmarks/_data/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/gen.py -------------------------------------------------------------------------------- /benchmarks/_data/http/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/http/small -------------------------------------------------------------------------------- /benchmarks/_data/ipv4/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/ipv4/small -------------------------------------------------------------------------------- /benchmarks/_data/rep/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/rep/small -------------------------------------------------------------------------------- /benchmarks/_data/uri/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/_data/uri/small -------------------------------------------------------------------------------- /benchmarks/c/.gitignore: -------------------------------------------------------------------------------- 1 | bin/** 2 | data/*/big 3 | -------------------------------------------------------------------------------- /benchmarks/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/c/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/c/Makefile.am -------------------------------------------------------------------------------- /benchmarks/c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/c/README -------------------------------------------------------------------------------- /benchmarks/c/run.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/c/run.py.in -------------------------------------------------------------------------------- /benchmarks/c/src/bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/c/src/bench.cc -------------------------------------------------------------------------------- /benchmarks/c/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/c/src/common.h -------------------------------------------------------------------------------- /benchmarks/c/src/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/benchmarks/c/src/test.cc -------------------------------------------------------------------------------- /bootstrap/doc/re2c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2c.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2d.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2d.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2go.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2go.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2hs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2hs.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2java.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2java.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2js.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2js.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2ocaml.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2ocaml.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2py.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2py.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2rust.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2rust.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2swift.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2swift.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2v.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2v.1 -------------------------------------------------------------------------------- /bootstrap/doc/re2zig.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/doc/re2zig.1 -------------------------------------------------------------------------------- /bootstrap/lib/lex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/lib/lex.cc -------------------------------------------------------------------------------- /bootstrap/lib/parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/lib/parse.cc -------------------------------------------------------------------------------- /bootstrap/lib/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/lib/parse.h -------------------------------------------------------------------------------- /bootstrap/src/parse/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/bootstrap/src/parse/lexer.h -------------------------------------------------------------------------------- /cmake/Re2cBuildType.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/cmake/Re2cBuildType.cmake -------------------------------------------------------------------------------- /cmake/Re2cGenDocs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/cmake/Re2cGenDocs.cmake -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/README -------------------------------------------------------------------------------- /doc/help.rst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/help.rst.in -------------------------------------------------------------------------------- /doc/manpage.rst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/manpage.rst.in -------------------------------------------------------------------------------- /doc/manual/authors.rst_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/manual/authors.rst_ -------------------------------------------------------------------------------- /doc/manual/eof/eof.rst_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/manual/eof/eof.rst_ -------------------------------------------------------------------------------- /doc/manual/fill/fill.rst_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/manual/fill/fill.rst_ -------------------------------------------------------------------------------- /doc/manual/intro.rst_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/manual/intro.rst_ -------------------------------------------------------------------------------- /doc/manual/synopsis.rst_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/manual/synopsis.rst_ -------------------------------------------------------------------------------- /doc/papers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/doc/papers/.gitignore -------------------------------------------------------------------------------- /examples/c/01_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/01_basic.c -------------------------------------------------------------------------------- /examples/c/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/01_basic.re -------------------------------------------------------------------------------- /examples/c/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/__run_all.sh -------------------------------------------------------------------------------- /examples/c/fill/01_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/fill/01_fill.c -------------------------------------------------------------------------------- /examples/c/fill/01_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/fill/01_fill.re -------------------------------------------------------------------------------- /examples/c/fill/02_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/fill/02_fill.c -------------------------------------------------------------------------------- /examples/c/fill/02_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/fill/02_fill.re -------------------------------------------------------------------------------- /examples/c/headers/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/headers/header.c -------------------------------------------------------------------------------- /examples/c/reuse/braille.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/reuse/braille.c -------------------------------------------------------------------------------- /examples/c/reuse/braille.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/reuse/braille.re -------------------------------------------------------------------------------- /examples/c/reuse/reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/reuse/reuse.c -------------------------------------------------------------------------------- /examples/c/reuse/reuse.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/reuse/reuse.re -------------------------------------------------------------------------------- /examples/c/reuse/usedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/reuse/usedir.c -------------------------------------------------------------------------------- /examples/c/reuse/usedir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/reuse/usedir.re -------------------------------------------------------------------------------- /examples/c/state/push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/state/push.c -------------------------------------------------------------------------------- /examples/c/state/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/c/state/push.re -------------------------------------------------------------------------------- /examples/d/01_basic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/01_basic.d -------------------------------------------------------------------------------- /examples/d/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/01_basic.re -------------------------------------------------------------------------------- /examples/d/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/__run_all.sh -------------------------------------------------------------------------------- /examples/d/fill/01_fill.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/fill/01_fill.d -------------------------------------------------------------------------------- /examples/d/fill/01_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/fill/01_fill.re -------------------------------------------------------------------------------- /examples/d/fill/02_fill.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/fill/02_fill.d -------------------------------------------------------------------------------- /examples/d/fill/02_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/fill/02_fill.re -------------------------------------------------------------------------------- /examples/d/headers/header.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/headers/header.d -------------------------------------------------------------------------------- /examples/d/reuse/reuse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/reuse/reuse.d -------------------------------------------------------------------------------- /examples/d/reuse/reuse.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/reuse/reuse.re -------------------------------------------------------------------------------- /examples/d/reuse/usedir.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/reuse/usedir.d -------------------------------------------------------------------------------- /examples/d/reuse/usedir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/reuse/usedir.re -------------------------------------------------------------------------------- /examples/d/state/push.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/state/push.d -------------------------------------------------------------------------------- /examples/d/state/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/d/state/push.re -------------------------------------------------------------------------------- /examples/go/01_basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/01_basic.go -------------------------------------------------------------------------------- /examples/go/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/01_basic.re -------------------------------------------------------------------------------- /examples/go/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/__run_all.sh -------------------------------------------------------------------------------- /examples/go/fill/01_fill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/fill/01_fill.go -------------------------------------------------------------------------------- /examples/go/fill/01_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/fill/01_fill.re -------------------------------------------------------------------------------- /examples/go/fill/02_fill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/fill/02_fill.go -------------------------------------------------------------------------------- /examples/go/fill/02_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/fill/02_fill.re -------------------------------------------------------------------------------- /examples/go/reuse/reuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/reuse/reuse.go -------------------------------------------------------------------------------- /examples/go/reuse/reuse.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/reuse/reuse.re -------------------------------------------------------------------------------- /examples/go/reuse/usedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/reuse/usedir.go -------------------------------------------------------------------------------- /examples/go/reuse/usedir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/reuse/usedir.re -------------------------------------------------------------------------------- /examples/go/state/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/state/push.go -------------------------------------------------------------------------------- /examples/go/state/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/go/state/push.re -------------------------------------------------------------------------------- /examples/java/01_basic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/java/01_basic.java -------------------------------------------------------------------------------- /examples/java/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/java/01_basic.re -------------------------------------------------------------------------------- /examples/java/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/java/__run_all.sh -------------------------------------------------------------------------------- /examples/java/state/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/java/state/push.re -------------------------------------------------------------------------------- /examples/js/01_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/01_basic.js -------------------------------------------------------------------------------- /examples/js/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/01_basic.re -------------------------------------------------------------------------------- /examples/js/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/__run_all.sh -------------------------------------------------------------------------------- /examples/js/fill/01_fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/fill/01_fill.js -------------------------------------------------------------------------------- /examples/js/fill/01_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/fill/01_fill.re -------------------------------------------------------------------------------- /examples/js/fill/02_fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/fill/02_fill.js -------------------------------------------------------------------------------- /examples/js/fill/02_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/fill/02_fill.re -------------------------------------------------------------------------------- /examples/js/reuse/reuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/reuse/reuse.js -------------------------------------------------------------------------------- /examples/js/reuse/reuse.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/reuse/reuse.re -------------------------------------------------------------------------------- /examples/js/reuse/usedir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/reuse/usedir.js -------------------------------------------------------------------------------- /examples/js/reuse/usedir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/reuse/usedir.re -------------------------------------------------------------------------------- /examples/js/state/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/state/push.js -------------------------------------------------------------------------------- /examples/js/state/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/js/state/push.re -------------------------------------------------------------------------------- /examples/ocaml/01_basic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/ocaml/01_basic.ml -------------------------------------------------------------------------------- /examples/ocaml/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/ocaml/01_basic.re -------------------------------------------------------------------------------- /examples/ocaml/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/ocaml/__run_all.sh -------------------------------------------------------------------------------- /examples/python/01_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/python/01_basic.py -------------------------------------------------------------------------------- /examples/python/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/python/01_basic.re -------------------------------------------------------------------------------- /examples/python/headers/lexer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rust/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/rust/01_basic.re -------------------------------------------------------------------------------- /examples/rust/01_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/rust/01_basic.rs -------------------------------------------------------------------------------- /examples/rust/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/rust/__run_all.sh -------------------------------------------------------------------------------- /examples/rust/headers/lexer/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod state; 2 | -------------------------------------------------------------------------------- /examples/rust/state/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/rust/state/push.re -------------------------------------------------------------------------------- /examples/rust/state/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/rust/state/push.rs -------------------------------------------------------------------------------- /examples/swift/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/swift/01_basic.re -------------------------------------------------------------------------------- /examples/swift/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/swift/__run_all.sh -------------------------------------------------------------------------------- /examples/v/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/01_basic.re -------------------------------------------------------------------------------- /examples/v/01_basic.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/01_basic.v -------------------------------------------------------------------------------- /examples/v/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/__run_all.sh -------------------------------------------------------------------------------- /examples/v/fill/01_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/fill/01_fill.re -------------------------------------------------------------------------------- /examples/v/fill/01_fill.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/fill/01_fill.v -------------------------------------------------------------------------------- /examples/v/fill/02_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/fill/02_fill.re -------------------------------------------------------------------------------- /examples/v/fill/02_fill.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/fill/02_fill.v -------------------------------------------------------------------------------- /examples/v/headers/header.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/headers/header.v -------------------------------------------------------------------------------- /examples/v/reuse/reuse.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/reuse/reuse.re -------------------------------------------------------------------------------- /examples/v/reuse/reuse.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/reuse/reuse.v -------------------------------------------------------------------------------- /examples/v/reuse/usedir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/reuse/usedir.re -------------------------------------------------------------------------------- /examples/v/reuse/usedir.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/reuse/usedir.v -------------------------------------------------------------------------------- /examples/v/state/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/state/push.re -------------------------------------------------------------------------------- /examples/v/state/push.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/v/state/push.v -------------------------------------------------------------------------------- /examples/zig/01_basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/zig/01_basic.re -------------------------------------------------------------------------------- /examples/zig/01_basic.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/zig/01_basic.zig -------------------------------------------------------------------------------- /examples/zig/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/zig/__run_all.sh -------------------------------------------------------------------------------- /examples/zig/reuse/reuse.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/zig/reuse/reuse.re -------------------------------------------------------------------------------- /examples/zig/state/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/zig/state/push.re -------------------------------------------------------------------------------- /examples/zig/state/push.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/examples/zig/state/push.zig -------------------------------------------------------------------------------- /fuzz/regex_tdfa/__mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/fuzz/regex_tdfa/__mk.sh -------------------------------------------------------------------------------- /fuzz/regex_tdfa/check.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/fuzz/regex_tdfa/check.hs -------------------------------------------------------------------------------- /fuzz/tdfa0_tdfa1/__mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/fuzz/tdfa0_tdfa1/__mk.sh -------------------------------------------------------------------------------- /fuzz/tdfa0_tdfa1/check.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/fuzz/tdfa0_tdfa1/check.hs -------------------------------------------------------------------------------- /include/syntax/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/c -------------------------------------------------------------------------------- /include/syntax/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/d -------------------------------------------------------------------------------- /include/syntax/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/go -------------------------------------------------------------------------------- /include/syntax/haskell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/haskell -------------------------------------------------------------------------------- /include/syntax/java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/java -------------------------------------------------------------------------------- /include/syntax/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/js -------------------------------------------------------------------------------- /include/syntax/ocaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/ocaml -------------------------------------------------------------------------------- /include/syntax/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/python -------------------------------------------------------------------------------- /include/syntax/rust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/rust -------------------------------------------------------------------------------- /include/syntax/swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/swift -------------------------------------------------------------------------------- /include/syntax/v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/v -------------------------------------------------------------------------------- /include/syntax/zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/include/syntax/zig -------------------------------------------------------------------------------- /lib/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/lex.h -------------------------------------------------------------------------------- /lib/lex.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/lex.re -------------------------------------------------------------------------------- /lib/parse.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/parse.ypp -------------------------------------------------------------------------------- /lib/regcomp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regcomp.cc -------------------------------------------------------------------------------- /lib/regcomp_dfa_multipass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regcomp_dfa_multipass.h -------------------------------------------------------------------------------- /lib/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regex.h -------------------------------------------------------------------------------- /lib/regex_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regex_impl.h -------------------------------------------------------------------------------- /lib/regexec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regexec.cc -------------------------------------------------------------------------------- /lib/regexec_dfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regexec_dfa.cc -------------------------------------------------------------------------------- /lib/regexec_nfa_leftmost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regexec_nfa_leftmost.cc -------------------------------------------------------------------------------- /lib/regexec_nfa_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regexec_nfa_posix.cc -------------------------------------------------------------------------------- /lib/regfree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regfree.cc -------------------------------------------------------------------------------- /lib/regoff_trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/regoff_trie.h -------------------------------------------------------------------------------- /lib/stubs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/stubs.cc -------------------------------------------------------------------------------- /lib/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/test.cc -------------------------------------------------------------------------------- /lib/test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/test_helper.h -------------------------------------------------------------------------------- /lib/test_helper.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/lib/test_helper.re -------------------------------------------------------------------------------- /libre2c_old/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/CHANGES -------------------------------------------------------------------------------- /libre2c_old/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/COPYING -------------------------------------------------------------------------------- /libre2c_old/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/Doxyfile -------------------------------------------------------------------------------- /libre2c_old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/Makefile -------------------------------------------------------------------------------- /libre2c_old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/README -------------------------------------------------------------------------------- /libre2c_old/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/TODO -------------------------------------------------------------------------------- /libre2c_old/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/examples/README -------------------------------------------------------------------------------- /libre2c_old/libre2c/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/libre2c/read.c -------------------------------------------------------------------------------- /libre2c_old/libre2c/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/libre2c/read.h -------------------------------------------------------------------------------- /libre2c_old/libre2c/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/libre2c/scan.c -------------------------------------------------------------------------------- /libre2c_old/libre2c/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/libre2c/scan.h -------------------------------------------------------------------------------- /libre2c_old/mainpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/mainpage.c -------------------------------------------------------------------------------- /libre2c_old/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/test/Makefile -------------------------------------------------------------------------------- /libre2c_old/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/test/README -------------------------------------------------------------------------------- /libre2c_old/test/retest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/test/retest.c -------------------------------------------------------------------------------- /libre2c_old/test/retest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/test/retest.h -------------------------------------------------------------------------------- /libre2c_old/test/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/test/tester.c -------------------------------------------------------------------------------- /libre2c_old/test/zutest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/test/zutest.c -------------------------------------------------------------------------------- /libre2c_old/test/zutest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/libre2c_old/test/zutest.h -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/release.sh -------------------------------------------------------------------------------- /run_tests.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/run_tests.py.in -------------------------------------------------------------------------------- /sf-cheatsheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/sf-cheatsheet -------------------------------------------------------------------------------- /src/adfa/adfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/adfa/adfa.cc -------------------------------------------------------------------------------- /src/adfa/adfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/adfa/adfa.h -------------------------------------------------------------------------------- /src/cfg/cfg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/cfg.cc -------------------------------------------------------------------------------- /src/cfg/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/cfg.h -------------------------------------------------------------------------------- /src/cfg/compact.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/compact.cc -------------------------------------------------------------------------------- /src/cfg/dce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/dce.cc -------------------------------------------------------------------------------- /src/cfg/freeze.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/freeze.cc -------------------------------------------------------------------------------- /src/cfg/interfere.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/interfere.cc -------------------------------------------------------------------------------- /src/cfg/liveanal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/liveanal.cc -------------------------------------------------------------------------------- /src/cfg/normalize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/normalize.cc -------------------------------------------------------------------------------- /src/cfg/optimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/optimize.cc -------------------------------------------------------------------------------- /src/cfg/rename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/rename.cc -------------------------------------------------------------------------------- /src/cfg/varalloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/cfg/varalloc.cc -------------------------------------------------------------------------------- /src/codegen/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/codegen/code.h -------------------------------------------------------------------------------- /src/codegen/helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/codegen/helpers.cc -------------------------------------------------------------------------------- /src/codegen/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/codegen/helpers.h -------------------------------------------------------------------------------- /src/codegen/output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/codegen/output.cc -------------------------------------------------------------------------------- /src/codegen/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/codegen/output.h -------------------------------------------------------------------------------- /src/codegen/pass3_fixup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/codegen/pass3_fixup.cc -------------------------------------------------------------------------------- /src/codegen/pass4_render.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/codegen/pass4_render.cc -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/constants.h -------------------------------------------------------------------------------- /src/debug/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/debug/debug.h -------------------------------------------------------------------------------- /src/debug/dump_adfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/debug/dump_adfa.cc -------------------------------------------------------------------------------- /src/debug/dump_cfg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/debug/dump_cfg.cc -------------------------------------------------------------------------------- /src/debug/dump_dfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/debug/dump_dfa.cc -------------------------------------------------------------------------------- /src/debug/dump_dfa_tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/debug/dump_dfa_tree.cc -------------------------------------------------------------------------------- /src/debug/dump_interf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/debug/dump_interf.cc -------------------------------------------------------------------------------- /src/debug/dump_nfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/debug/dump_nfa.cc -------------------------------------------------------------------------------- /src/dfa/closure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/closure.cc -------------------------------------------------------------------------------- /src/dfa/closure_leftmost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/closure_leftmost.h -------------------------------------------------------------------------------- /src/dfa/closure_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/closure_posix.h -------------------------------------------------------------------------------- /src/dfa/dead_rules.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/dead_rules.cc -------------------------------------------------------------------------------- /src/dfa/determinization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/determinization.cc -------------------------------------------------------------------------------- /src/dfa/determinization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/determinization.h -------------------------------------------------------------------------------- /src/dfa/dfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/dfa.h -------------------------------------------------------------------------------- /src/dfa/fallback_tags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/fallback_tags.cc -------------------------------------------------------------------------------- /src/dfa/fillpoints.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/fillpoints.cc -------------------------------------------------------------------------------- /src/dfa/find_state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/find_state.cc -------------------------------------------------------------------------------- /src/dfa/minimization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/minimization.cc -------------------------------------------------------------------------------- /src/dfa/posix_precedence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/posix_precedence.h -------------------------------------------------------------------------------- /src/dfa/tag_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/tag_history.h -------------------------------------------------------------------------------- /src/dfa/tagver_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/tagver_table.cc -------------------------------------------------------------------------------- /src/dfa/tagver_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/tagver_table.h -------------------------------------------------------------------------------- /src/dfa/tcmd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/tcmd.cc -------------------------------------------------------------------------------- /src/dfa/tcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/dfa/tcmd.h -------------------------------------------------------------------------------- /src/encoding/ebcdic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/ebcdic.cc -------------------------------------------------------------------------------- /src/encoding/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/ebcdic.h -------------------------------------------------------------------------------- /src/encoding/enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/enc.cc -------------------------------------------------------------------------------- /src/encoding/enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/enc.h -------------------------------------------------------------------------------- /src/encoding/range_suffix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/range_suffix.h -------------------------------------------------------------------------------- /src/encoding/utf16.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/utf16.cc -------------------------------------------------------------------------------- /src/encoding/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/utf16.h -------------------------------------------------------------------------------- /src/encoding/utf8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/utf8.cc -------------------------------------------------------------------------------- /src/encoding/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/encoding/utf8.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/msg/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/msg/location.h -------------------------------------------------------------------------------- /src/msg/msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/msg/msg.cc -------------------------------------------------------------------------------- /src/msg/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/msg/msg.h -------------------------------------------------------------------------------- /src/msg/ver_to_vernum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/msg/ver_to_vernum.h -------------------------------------------------------------------------------- /src/msg/ver_to_vernum.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/msg/ver_to_vernum.re -------------------------------------------------------------------------------- /src/msg/warn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/msg/warn.cc -------------------------------------------------------------------------------- /src/msg/warn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/msg/warn.h -------------------------------------------------------------------------------- /src/nfa/nfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/nfa/nfa.h -------------------------------------------------------------------------------- /src/nfa/re_to_nfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/nfa/re_to_nfa.cc -------------------------------------------------------------------------------- /src/options/opt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/options/opt.cc -------------------------------------------------------------------------------- /src/options/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/options/opt.h -------------------------------------------------------------------------------- /src/options/parse_opts.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/options/parse_opts.re -------------------------------------------------------------------------------- /src/options/symtab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/options/symtab.cc -------------------------------------------------------------------------------- /src/options/symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/options/symtab.h -------------------------------------------------------------------------------- /src/parse/ast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/parse/ast.cc -------------------------------------------------------------------------------- /src/parse/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/parse/ast.h -------------------------------------------------------------------------------- /src/parse/conf_lexer.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/parse/conf_lexer.re -------------------------------------------------------------------------------- /src/parse/conf_parser.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/parse/conf_parser.ypp -------------------------------------------------------------------------------- /src/parse/input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/parse/input.cc -------------------------------------------------------------------------------- /src/parse/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/parse/input.h -------------------------------------------------------------------------------- /src/parse/lexer.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/parse/lexer.re -------------------------------------------------------------------------------- /src/parse/parser.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/parse/parser.ypp -------------------------------------------------------------------------------- /src/regexp/ast_to_re.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/ast_to_re.cc -------------------------------------------------------------------------------- /src/regexp/default_tags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/default_tags.cc -------------------------------------------------------------------------------- /src/regexp/fixed_tags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/fixed_tags.cc -------------------------------------------------------------------------------- /src/regexp/nullable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/nullable.cc -------------------------------------------------------------------------------- /src/regexp/regexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/regexp.cc -------------------------------------------------------------------------------- /src/regexp/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/regexp.h -------------------------------------------------------------------------------- /src/regexp/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/rule.h -------------------------------------------------------------------------------- /src/regexp/split_charset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/split_charset.cc -------------------------------------------------------------------------------- /src/regexp/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/regexp/tag.h -------------------------------------------------------------------------------- /src/skeleton/maxpath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/skeleton/maxpath.cc -------------------------------------------------------------------------------- /src/skeleton/mtag_trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/skeleton/mtag_trie.h -------------------------------------------------------------------------------- /src/skeleton/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/skeleton/path.h -------------------------------------------------------------------------------- /src/skeleton/skeleton.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/skeleton/skeleton.cc -------------------------------------------------------------------------------- /src/skeleton/skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/skeleton/skeleton.h -------------------------------------------------------------------------------- /src/test/argsubst/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/test/argsubst/test.cc -------------------------------------------------------------------------------- /src/test/list/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/test/list/test.cc -------------------------------------------------------------------------------- /src/test/range/test-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/test/range/test-impl.h -------------------------------------------------------------------------------- /src/test/range/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/test/range/test.cc -------------------------------------------------------------------------------- /src/test/range/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/test/range/test.h -------------------------------------------------------------------------------- /src/util/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/allocator.h -------------------------------------------------------------------------------- /src/util/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/attribute.h -------------------------------------------------------------------------------- /src/util/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/check.h -------------------------------------------------------------------------------- /src/util/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/containers.h -------------------------------------------------------------------------------- /src/util/file_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/file_utils.cc -------------------------------------------------------------------------------- /src/util/file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/file_utils.h -------------------------------------------------------------------------------- /src/util/forbid_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/forbid_copy.h -------------------------------------------------------------------------------- /src/util/hash32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/hash32.h -------------------------------------------------------------------------------- /src/util/nowarn_in_bison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/nowarn_in_bison.h -------------------------------------------------------------------------------- /src/util/range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/range.cc -------------------------------------------------------------------------------- /src/util/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/range.h -------------------------------------------------------------------------------- /src/util/string_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/string_utils.cc -------------------------------------------------------------------------------- /src/util/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/string_utils.h -------------------------------------------------------------------------------- /src/util/u32lim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/src/util/u32lim.h -------------------------------------------------------------------------------- /test/__run_unicode_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/__run_unicode_tests.sh -------------------------------------------------------------------------------- /test/american_fuzzy_lop/001.c: -------------------------------------------------------------------------------- 1 | american_fuzzy_lop/001.re:2:10: error: unexpected end of input 2 | -------------------------------------------------------------------------------- /test/american_fuzzy_lop/002.c: -------------------------------------------------------------------------------- 1 | american_fuzzy_lop/002.re:2:9: error: unexpected end of input 2 | -------------------------------------------------------------------------------- /test/american_fuzzy_lop/003.c: -------------------------------------------------------------------------------- 1 | american_fuzzy_lop/003.re:2:9: error: unexpected end of input 2 | -------------------------------------------------------------------------------- /test/bug1054496.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1054496.c -------------------------------------------------------------------------------- /test/bug1054496.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1054496.re -------------------------------------------------------------------------------- /test/bug116.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug116.c -------------------------------------------------------------------------------- /test/bug116.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug116.re -------------------------------------------------------------------------------- /test/bug1163046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1163046.c -------------------------------------------------------------------------------- /test/bug1163046.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1163046.re -------------------------------------------------------------------------------- /test/bug1187785.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1187785.c -------------------------------------------------------------------------------- /test/bug1187785.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1187785.re -------------------------------------------------------------------------------- /test/bug119.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119.c -------------------------------------------------------------------------------- /test/bug119.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119.re -------------------------------------------------------------------------------- /test/bug119_abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_abort.c -------------------------------------------------------------------------------- /test/bug119_abort.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_abort.re -------------------------------------------------------------------------------- /test/bug119_abort_bif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_abort_bif.c -------------------------------------------------------------------------------- /test/bug119_abort_bif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_abort_bif.re -------------------------------------------------------------------------------- /test/bug119_abort_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_abort_if.c -------------------------------------------------------------------------------- /test/bug119_abort_if.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_abort_if.re -------------------------------------------------------------------------------- /test/bug119_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_gif.c -------------------------------------------------------------------------------- /test/bug119_gif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_gif.re -------------------------------------------------------------------------------- /test/bug119_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_if.c -------------------------------------------------------------------------------- /test/bug119_if.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug119_if.re -------------------------------------------------------------------------------- /test/bug128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug128.c -------------------------------------------------------------------------------- /test/bug128.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug128.re -------------------------------------------------------------------------------- /test/bug1297658.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1297658.c -------------------------------------------------------------------------------- /test/bug1297658.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1297658.re -------------------------------------------------------------------------------- /test/bug1390174.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1390174.c -------------------------------------------------------------------------------- /test/bug1390174.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1390174.re -------------------------------------------------------------------------------- /test/bug142.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug142.c -------------------------------------------------------------------------------- /test/bug142.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug142.re -------------------------------------------------------------------------------- /test/bug145.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug145.c -------------------------------------------------------------------------------- /test/bug145.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug145.re -------------------------------------------------------------------------------- /test/bug1454253.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1454253.c -------------------------------------------------------------------------------- /test/bug1454253.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1454253.re -------------------------------------------------------------------------------- /test/bug1454253_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1454253_s.c -------------------------------------------------------------------------------- /test/bug1454253_s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1454253_s.re -------------------------------------------------------------------------------- /test/bug1454253b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1454253b.c -------------------------------------------------------------------------------- /test/bug1454253b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1454253b.re -------------------------------------------------------------------------------- /test/bug147.c: -------------------------------------------------------------------------------- 1 | bug147.re:3:10: error: undefined symbol 'name1' 2 | -------------------------------------------------------------------------------- /test/bug147.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug147.re -------------------------------------------------------------------------------- /test/bug1472770.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1472770.c -------------------------------------------------------------------------------- /test/bug1472770.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1472770.re -------------------------------------------------------------------------------- /test/bug1472770_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1472770_b.c -------------------------------------------------------------------------------- /test/bug1472770_b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1472770_b.re -------------------------------------------------------------------------------- /test/bug1472770_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1472770_f.c -------------------------------------------------------------------------------- /test/bug1472770_f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1472770_f.re -------------------------------------------------------------------------------- /test/bug1472770_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1472770_s.c -------------------------------------------------------------------------------- /test/bug1472770_s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1472770_s.re -------------------------------------------------------------------------------- /test/bug1479044.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1479044.c -------------------------------------------------------------------------------- /test/bug1479044.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1479044.re -------------------------------------------------------------------------------- /test/bug1479044_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1479044_b.c -------------------------------------------------------------------------------- /test/bug1479044_b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1479044_b.re -------------------------------------------------------------------------------- /test/bug1479044_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1479044_s.c -------------------------------------------------------------------------------- /test/bug1479044_s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1479044_s.re -------------------------------------------------------------------------------- /test/bug152.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug152.c -------------------------------------------------------------------------------- /test/bug152.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug152.re -------------------------------------------------------------------------------- /test/bug1528269.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1528269.c -------------------------------------------------------------------------------- /test/bug1528269.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1528269.re -------------------------------------------------------------------------------- /test/bug1529351.c: -------------------------------------------------------------------------------- 1 | bug1529351.re:6:0: error: unexpected end of input 2 | -------------------------------------------------------------------------------- /test/bug1529351.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1529351.re -------------------------------------------------------------------------------- /test/bug1682718.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1682718.c -------------------------------------------------------------------------------- /test/bug1682718.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1682718.re -------------------------------------------------------------------------------- /test/bug1682718_is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1682718_is.c -------------------------------------------------------------------------------- /test/bug1682718_is.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1682718_is.re -------------------------------------------------------------------------------- /test/bug1708378.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1708378.c -------------------------------------------------------------------------------- /test/bug1708378.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug1708378.re -------------------------------------------------------------------------------- /test/bug2102138.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug2102138.c -------------------------------------------------------------------------------- /test/bug2102138.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug2102138.re -------------------------------------------------------------------------------- /test/bug2462777.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug2462777.c -------------------------------------------------------------------------------- /test/bug2462777.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug2462777.re -------------------------------------------------------------------------------- /test/bug2462777_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug2462777_i.c -------------------------------------------------------------------------------- /test/bug2462777_i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug2462777_i.re -------------------------------------------------------------------------------- /test/bug46_infinite_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug46_infinite_loop.c -------------------------------------------------------------------------------- /test/bug46_infinite_loop.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug46_infinite_loop.re -------------------------------------------------------------------------------- /test/bug57.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug57.c -------------------------------------------------------------------------------- /test/bug57.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug57.re -------------------------------------------------------------------------------- /test/bug57_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug57_original.c -------------------------------------------------------------------------------- /test/bug57_original.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug57_original.re -------------------------------------------------------------------------------- /test/bug59_bogus_yyaccept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug59_bogus_yyaccept.c -------------------------------------------------------------------------------- /test/bug61.c: -------------------------------------------------------------------------------- 1 | bug61.re:3:4: error: empty character class 2 | -------------------------------------------------------------------------------- /test/bug61.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug61.re -------------------------------------------------------------------------------- /test/bug61_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug61_i.c -------------------------------------------------------------------------------- /test/bug61_i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug61_i.re -------------------------------------------------------------------------------- /test/bug61_negative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug61_negative.c -------------------------------------------------------------------------------- /test/bug61_negative.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug61_negative.re -------------------------------------------------------------------------------- /test/bug61_positive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug61_positive.c -------------------------------------------------------------------------------- /test/bug61_positive.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/bug61_positive.re -------------------------------------------------------------------------------- /test/calc_001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_001.c -------------------------------------------------------------------------------- /test/calc_001.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_001.re -------------------------------------------------------------------------------- /test/calc_002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_002.c -------------------------------------------------------------------------------- /test/calc_002.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_002.re -------------------------------------------------------------------------------- /test/calc_003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_003.c -------------------------------------------------------------------------------- /test/calc_003.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_003.re -------------------------------------------------------------------------------- /test/calc_004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_004.c -------------------------------------------------------------------------------- /test/calc_004.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_004.re -------------------------------------------------------------------------------- /test/calc_005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_005.c -------------------------------------------------------------------------------- /test/calc_005.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_005.re -------------------------------------------------------------------------------- /test/calc_006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_006.c -------------------------------------------------------------------------------- /test/calc_006.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_006.re -------------------------------------------------------------------------------- /test/calc_007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_007.c -------------------------------------------------------------------------------- /test/calc_007.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_007.re -------------------------------------------------------------------------------- /test/calc_008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_008.c -------------------------------------------------------------------------------- /test/calc_008.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/calc_008.re -------------------------------------------------------------------------------- /test/captures/diff1_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/captures/diff1_posix.c -------------------------------------------------------------------------------- /test/captures/same1_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/captures/same1_posix.c -------------------------------------------------------------------------------- /test/captures/same2_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/captures/same2_posix.c -------------------------------------------------------------------------------- /test/casing-flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/casing-flags.c -------------------------------------------------------------------------------- /test/casing-flags.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/casing-flags.re -------------------------------------------------------------------------------- /test/casing-flags_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/casing-flags_i.c -------------------------------------------------------------------------------- /test/casing-flags_i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/casing-flags_i.re -------------------------------------------------------------------------------- /test/codegen/c/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/c/__run_all.sh -------------------------------------------------------------------------------- /test/codegen/d/01_basic_b.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/d/01_basic_b.d -------------------------------------------------------------------------------- /test/codegen/d/01_basic_d.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/d/01_basic_d.d -------------------------------------------------------------------------------- /test/codegen/d/01_basic_s.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/d/01_basic_s.d -------------------------------------------------------------------------------- /test/codegen/d/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/d/__run_all.sh -------------------------------------------------------------------------------- /test/codegen/go/003_fill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/go/003_fill.go -------------------------------------------------------------------------------- /test/codegen/go/003_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/go/003_fill.re -------------------------------------------------------------------------------- /test/codegen/rust/yyloop.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/rust/yyloop.re -------------------------------------------------------------------------------- /test/codegen/rust/yyloop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/rust/yyloop.rs -------------------------------------------------------------------------------- /test/codegen/v/01_basic_b.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/v/01_basic_b.v -------------------------------------------------------------------------------- /test/codegen/v/01_basic_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/v/01_basic_s.v -------------------------------------------------------------------------------- /test/codegen/v/__run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/codegen/v/__run_all.sh -------------------------------------------------------------------------------- /test/conditions/condtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/conditions/condtype.c -------------------------------------------------------------------------------- /test/conditions/condtype.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/conditions/condtype.re -------------------------------------------------------------------------------- /test/config/__gen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/__gen.hs -------------------------------------------------------------------------------- /test/config/all_configs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/all_configs.c -------------------------------------------------------------------------------- /test/config/all_configs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/all_configs.re -------------------------------------------------------------------------------- /test/config/all_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/all_options.c -------------------------------------------------------------------------------- /test/config/all_options.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/all_options.re -------------------------------------------------------------------------------- /test/config/autogen/fill_check_eof_r.c: -------------------------------------------------------------------------------- 1 | re2c: error: YYFILL check is necessary if EOF rule is used 2 | -------------------------------------------------------------------------------- /test/config/autogen/fill_check_eof_rf.c: -------------------------------------------------------------------------------- 1 | re2c: error: YYFILL check is necessary if EOF rule is used 2 | -------------------------------------------------------------------------------- /test/config/config1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config1.c -------------------------------------------------------------------------------- /test/config/config1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config1.re -------------------------------------------------------------------------------- /test/config/config10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config10.c -------------------------------------------------------------------------------- /test/config/config10.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config10.re -------------------------------------------------------------------------------- /test/config/config11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config11.c -------------------------------------------------------------------------------- /test/config/config11.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config11.re -------------------------------------------------------------------------------- /test/config/config12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config12.c -------------------------------------------------------------------------------- /test/config/config12.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config12.re -------------------------------------------------------------------------------- /test/config/config13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config13.c -------------------------------------------------------------------------------- /test/config/config13.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config13.re -------------------------------------------------------------------------------- /test/config/config13_error3.c: -------------------------------------------------------------------------------- 1 | re2c: error: missing type in `re2c:YYFN` configuration element `arg1` 2 | -------------------------------------------------------------------------------- /test/config/config2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config2.c -------------------------------------------------------------------------------- /test/config/config2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config2.re -------------------------------------------------------------------------------- /test/config/config4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config4a.c -------------------------------------------------------------------------------- /test/config/config4a.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config4a.re -------------------------------------------------------------------------------- /test/config/config4b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config4b.c -------------------------------------------------------------------------------- /test/config/config4b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config4b.re -------------------------------------------------------------------------------- /test/config/config4f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config4f.c -------------------------------------------------------------------------------- /test/config/config4f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config4f.re -------------------------------------------------------------------------------- /test/config/config4g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config4g.c -------------------------------------------------------------------------------- /test/config/config4g.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config4g.re -------------------------------------------------------------------------------- /test/config/config5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config5.c -------------------------------------------------------------------------------- /test/config/config5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config5.re -------------------------------------------------------------------------------- /test/config/config6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config6.c -------------------------------------------------------------------------------- /test/config/config6.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config6.re -------------------------------------------------------------------------------- /test/config/config7a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config7a.c -------------------------------------------------------------------------------- /test/config/config7a.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config7a.re -------------------------------------------------------------------------------- /test/config/config7b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config7b.c -------------------------------------------------------------------------------- /test/config/config7b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config7b.re -------------------------------------------------------------------------------- /test/config/config7c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config7c.c -------------------------------------------------------------------------------- /test/config/config7c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config7c.re -------------------------------------------------------------------------------- /test/config/config8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config8.c -------------------------------------------------------------------------------- /test/config/config8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config8.re -------------------------------------------------------------------------------- /test/config/config9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config9.c -------------------------------------------------------------------------------- /test/config/config9.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/config9.re -------------------------------------------------------------------------------- /test/config/multiline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/multiline.c -------------------------------------------------------------------------------- /test/config/multiline.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/config/multiline.re -------------------------------------------------------------------------------- /test/config/no_syntax_file.re: -------------------------------------------------------------------------------- 1 | // re2c $INPUT --lang none 2 | -------------------------------------------------------------------------------- /test/control_flow_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/control_flow_fail.c -------------------------------------------------------------------------------- /test/control_flow_fail.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/control_flow_fail.re -------------------------------------------------------------------------------- /test/control_flow_ok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/control_flow_ok.c -------------------------------------------------------------------------------- /test/control_flow_ok.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/control_flow_ok.re -------------------------------------------------------------------------------- /test/ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/ctx.c -------------------------------------------------------------------------------- /test/ctx.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/ctx.re -------------------------------------------------------------------------------- /test/ctx_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/ctx_b.c -------------------------------------------------------------------------------- /test/ctx_b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/ctx_b.re -------------------------------------------------------------------------------- /test/ctx_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/ctx_s.c -------------------------------------------------------------------------------- /test/ctx_s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/ctx_s.re -------------------------------------------------------------------------------- /test/cunroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cunroll.c -------------------------------------------------------------------------------- /test/cunroll.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cunroll.re -------------------------------------------------------------------------------- /test/cvsignore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore.c -------------------------------------------------------------------------------- /test/cvsignore.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore.re -------------------------------------------------------------------------------- /test/cvsignore_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_b.c -------------------------------------------------------------------------------- /test/cvsignore_b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_b.re -------------------------------------------------------------------------------- /test/cvsignore_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_s.c -------------------------------------------------------------------------------- /test/cvsignore_s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_s.re -------------------------------------------------------------------------------- /test/cvsignore_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_u.c -------------------------------------------------------------------------------- /test/cvsignore_u.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_u.re -------------------------------------------------------------------------------- /test/cvsignore_ub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_ub.c -------------------------------------------------------------------------------- /test/cvsignore_ub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_ub.re -------------------------------------------------------------------------------- /test/cvsignore_w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_w.c -------------------------------------------------------------------------------- /test/cvsignore_w.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_w.re -------------------------------------------------------------------------------- /test/cvsignore_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_wb.c -------------------------------------------------------------------------------- /test/cvsignore_wb.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/cvsignore_wb.re -------------------------------------------------------------------------------- /test/debug/adfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/adfa.c -------------------------------------------------------------------------------- /test/debug/adfa.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/adfa.re -------------------------------------------------------------------------------- /test/debug/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/cfg.c -------------------------------------------------------------------------------- /test/debug/cfg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/cfg.re -------------------------------------------------------------------------------- /test/debug/dfa_det.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/dfa_det.c -------------------------------------------------------------------------------- /test/debug/dfa_det.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/dfa_det.re -------------------------------------------------------------------------------- /test/debug/dfa_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/dfa_min.c -------------------------------------------------------------------------------- /test/debug/dfa_min.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/dfa_min.re -------------------------------------------------------------------------------- /test/debug/dfa_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/dfa_raw.c -------------------------------------------------------------------------------- /test/debug/dfa_raw.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/dfa_raw.re -------------------------------------------------------------------------------- /test/debug/dfa_tagopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/dfa_tagopt.c -------------------------------------------------------------------------------- /test/debug/dfa_tagopt.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/dfa_tagopt.re -------------------------------------------------------------------------------- /test/debug/interf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/interf.c -------------------------------------------------------------------------------- /test/debug/interf.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/interf.re -------------------------------------------------------------------------------- /test/debug/nfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/nfa.c -------------------------------------------------------------------------------- /test/debug/nfa.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/debug/nfa.re -------------------------------------------------------------------------------- /test/directives/maxfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/directives/maxfill.c -------------------------------------------------------------------------------- /test/directives/maxfill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/directives/maxfill.re -------------------------------------------------------------------------------- /test/directives/maxnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/directives/maxnmatch.c -------------------------------------------------------------------------------- /test/directives/tagsdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/directives/tagsdir.c -------------------------------------------------------------------------------- /test/directives/tagsdir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/directives/tagsdir.re -------------------------------------------------------------------------------- /test/dot/dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot.c -------------------------------------------------------------------------------- /test/dot/dot.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot.re -------------------------------------------------------------------------------- /test/dot/dot2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot2.c -------------------------------------------------------------------------------- /test/dot/dot2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot2.re -------------------------------------------------------------------------------- /test/dot/dot_backslash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot_backslash.c -------------------------------------------------------------------------------- /test/dot/dot_backslash.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot_backslash.re -------------------------------------------------------------------------------- /test/dot/dot_conditions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot_conditions.c -------------------------------------------------------------------------------- /test/dot/dot_conditions.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot_conditions.re -------------------------------------------------------------------------------- /test/dot/dot_ranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot_ranges.c -------------------------------------------------------------------------------- /test/dot/dot_ranges.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/dot/dot_ranges.re -------------------------------------------------------------------------------- /test/encodings/bug1711240.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/bug1711240.c -------------------------------------------------------------------------------- /test/encodings/calc_001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/calc_001.c -------------------------------------------------------------------------------- /test/encodings/calc_001.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/calc_001.re -------------------------------------------------------------------------------- /test/encodings/class1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/class1.c -------------------------------------------------------------------------------- /test/encodings/class1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/class1.re -------------------------------------------------------------------------------- /test/encodings/class2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/class2.c -------------------------------------------------------------------------------- /test/encodings/class2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/class2.re -------------------------------------------------------------------------------- /test/encodings/class3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/class3.c -------------------------------------------------------------------------------- /test/encodings/class3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/class3.re -------------------------------------------------------------------------------- /test/encodings/class4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/class4.c -------------------------------------------------------------------------------- /test/encodings/class4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/class4.re -------------------------------------------------------------------------------- /test/encodings/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default.c -------------------------------------------------------------------------------- /test/encodings/default.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default.re -------------------------------------------------------------------------------- /test/encodings/default_00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_00.c -------------------------------------------------------------------------------- /test/encodings/default_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_8.c -------------------------------------------------------------------------------- /test/encodings/default_8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_8.re -------------------------------------------------------------------------------- /test/encodings/default_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_e.c -------------------------------------------------------------------------------- /test/encodings/default_e.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_e.re -------------------------------------------------------------------------------- /test/encodings/default_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_u.c -------------------------------------------------------------------------------- /test/encodings/default_u.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_u.re -------------------------------------------------------------------------------- /test/encodings/default_w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_w.c -------------------------------------------------------------------------------- /test/encodings/default_w.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_w.re -------------------------------------------------------------------------------- /test/encodings/default_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_x.c -------------------------------------------------------------------------------- /test/encodings/default_x.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/default_x.re -------------------------------------------------------------------------------- /test/encodings/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff.c -------------------------------------------------------------------------------- /test/encodings/diff.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff.re -------------------------------------------------------------------------------- /test/encodings/diff_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_i.c -------------------------------------------------------------------------------- /test/encodings/diff_i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_i.re -------------------------------------------------------------------------------- /test/encodings/diff_i8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_i8.c -------------------------------------------------------------------------------- /test/encodings/diff_i8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_i8.re -------------------------------------------------------------------------------- /test/encodings/diff_ie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_ie.c -------------------------------------------------------------------------------- /test/encodings/diff_ie.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_ie.re -------------------------------------------------------------------------------- /test/encodings/diff_iu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_iu.c -------------------------------------------------------------------------------- /test/encodings/diff_iu.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_iu.re -------------------------------------------------------------------------------- /test/encodings/diff_iw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_iw.c -------------------------------------------------------------------------------- /test/encodings/diff_iw.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/diff_iw.re -------------------------------------------------------------------------------- /test/encodings/enc_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/enc_reset.c -------------------------------------------------------------------------------- /test/encodings/enc_reset.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/enc_reset.re -------------------------------------------------------------------------------- /test/encodings/range_dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/range_dot.c -------------------------------------------------------------------------------- /test/encodings/range_dot.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/range_dot.re -------------------------------------------------------------------------------- /test/encodings/range_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/range_full.c -------------------------------------------------------------------------------- /test/encodings/utf8_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/encodings/utf8_names.c -------------------------------------------------------------------------------- /test/eof/eof_00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_00.c -------------------------------------------------------------------------------- /test/eof/eof_00.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_00.re -------------------------------------------------------------------------------- /test/eof/eof_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_01.c -------------------------------------------------------------------------------- /test/eof/eof_01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_01.re -------------------------------------------------------------------------------- /test/eof/eof_02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_02.c -------------------------------------------------------------------------------- /test/eof/eof_02.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_02.re -------------------------------------------------------------------------------- /test/eof/eof_03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_03.c -------------------------------------------------------------------------------- /test/eof/eof_03.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_03.re -------------------------------------------------------------------------------- /test/eof/eof_04_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_8.c -------------------------------------------------------------------------------- /test/eof/eof_04_8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_8.re -------------------------------------------------------------------------------- /test/eof/eof_04_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_e.c -------------------------------------------------------------------------------- /test/eof/eof_04_e.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_e.re -------------------------------------------------------------------------------- /test/eof/eof_04_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_u.c -------------------------------------------------------------------------------- /test/eof/eof_04_u.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_u.re -------------------------------------------------------------------------------- /test/eof/eof_04_w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_w.c -------------------------------------------------------------------------------- /test/eof/eof_04_w.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_w.re -------------------------------------------------------------------------------- /test/eof/eof_04_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_x.c -------------------------------------------------------------------------------- /test/eof/eof_04_x.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_04_x.re -------------------------------------------------------------------------------- /test/eof/eof_05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_05.c -------------------------------------------------------------------------------- /test/eof/eof_05.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_05.re -------------------------------------------------------------------------------- /test/eof/eof_06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_06.c -------------------------------------------------------------------------------- /test/eof/eof_06.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_06.re -------------------------------------------------------------------------------- /test/eof/eof_07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_07.c -------------------------------------------------------------------------------- /test/eof/eof_07.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_07.re -------------------------------------------------------------------------------- /test/eof/eof_08.c: -------------------------------------------------------------------------------- 1 | eof/eof_08.re:3:25: error: configuration value overflow 2 | -------------------------------------------------------------------------------- /test/eof/eof_08.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_08.re -------------------------------------------------------------------------------- /test/eof/eof_08_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_08_8.c -------------------------------------------------------------------------------- /test/eof/eof_08_8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_08_8.re -------------------------------------------------------------------------------- /test/eof/eof_08_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_08_u.c -------------------------------------------------------------------------------- /test/eof/eof_08_u.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_08_u.re -------------------------------------------------------------------------------- /test/eof/eof_08_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_08_x.c -------------------------------------------------------------------------------- /test/eof/eof_08_x.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_08_x.re -------------------------------------------------------------------------------- /test/eof/eof_09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_09.c -------------------------------------------------------------------------------- /test/eof/eof_09.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_09.re -------------------------------------------------------------------------------- /test/eof/eof_10_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_10_fill.c -------------------------------------------------------------------------------- /test/eof/eof_10_fill.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_10_fill.re -------------------------------------------------------------------------------- /test/eof/eof_at_the_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_at_the_end.c -------------------------------------------------------------------------------- /test/eof/eof_at_the_end.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_at_the_end.re -------------------------------------------------------------------------------- /test/eof/eof_fallthru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_fallthru.c -------------------------------------------------------------------------------- /test/eof/eof_fallthru.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/eof_fallthru.re -------------------------------------------------------------------------------- /test/eof/generalized_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/generalized_tags.c -------------------------------------------------------------------------------- /test/eof/goto_elision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/goto_elision.c -------------------------------------------------------------------------------- /test/eof/goto_elision.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/goto_elision.re -------------------------------------------------------------------------------- /test/eof/goto_elision_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/goto_elision_f.c -------------------------------------------------------------------------------- /test/eof/goto_elision_f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/goto_elision_f.re -------------------------------------------------------------------------------- /test/eof/nonblocking_push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/nonblocking_push.c -------------------------------------------------------------------------------- /test/eof/nullable_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/nullable_loop.c -------------------------------------------------------------------------------- /test/eof/nullable_loop.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/nullable_loop.re -------------------------------------------------------------------------------- /test/eof/sentinel_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/sentinel_01.c -------------------------------------------------------------------------------- /test/eof/sentinel_01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/sentinel_01.re -------------------------------------------------------------------------------- /test/eof/sentinel_02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/sentinel_02.c -------------------------------------------------------------------------------- /test/eof/sentinel_02.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/sentinel_02.re -------------------------------------------------------------------------------- /test/eof/shadowrule_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/shadowrule_01.c -------------------------------------------------------------------------------- /test/eof/shadowrule_01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/shadowrule_01.re -------------------------------------------------------------------------------- /test/eof/shadowrule_05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/shadowrule_05.c -------------------------------------------------------------------------------- /test/eof/shadowrule_05.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/shadowrule_05.re -------------------------------------------------------------------------------- /test/eof/utf8_any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/utf8_any.c -------------------------------------------------------------------------------- /test/eof/utf8_any.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/eof/utf8_any.re -------------------------------------------------------------------------------- /test/error1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error1.c -------------------------------------------------------------------------------- /test/error1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error1.re -------------------------------------------------------------------------------- /test/error10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error10.c -------------------------------------------------------------------------------- /test/error10.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error10.re -------------------------------------------------------------------------------- /test/error11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error11.c -------------------------------------------------------------------------------- /test/error11.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error11.re -------------------------------------------------------------------------------- /test/error12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error12.c -------------------------------------------------------------------------------- /test/error12.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error12.re -------------------------------------------------------------------------------- /test/error13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error13.c -------------------------------------------------------------------------------- /test/error13.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error13.re -------------------------------------------------------------------------------- /test/error13_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error13_1.c -------------------------------------------------------------------------------- /test/error13_1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error13_1.re -------------------------------------------------------------------------------- /test/error14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error14.c -------------------------------------------------------------------------------- /test/error14.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error14.re -------------------------------------------------------------------------------- /test/error14_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error14_1.c -------------------------------------------------------------------------------- /test/error14_1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error14_1.re -------------------------------------------------------------------------------- /test/error15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error15.c -------------------------------------------------------------------------------- /test/error15.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error15.re -------------------------------------------------------------------------------- /test/error2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error2.c -------------------------------------------------------------------------------- /test/error2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error2.re -------------------------------------------------------------------------------- /test/error3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error3.c -------------------------------------------------------------------------------- /test/error3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error3.re -------------------------------------------------------------------------------- /test/error4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error4.c -------------------------------------------------------------------------------- /test/error4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error4.re -------------------------------------------------------------------------------- /test/error5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error5.c -------------------------------------------------------------------------------- /test/error5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error5.re -------------------------------------------------------------------------------- /test/error6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error6.c -------------------------------------------------------------------------------- /test/error6.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error6.re -------------------------------------------------------------------------------- /test/error7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error7.c -------------------------------------------------------------------------------- /test/error7.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error7.re -------------------------------------------------------------------------------- /test/error8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error8.c -------------------------------------------------------------------------------- /test/error8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error8.re -------------------------------------------------------------------------------- /test/error9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error9.c -------------------------------------------------------------------------------- /test/error9.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/error9.re -------------------------------------------------------------------------------- /test/flex_syntax/digits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/flex_syntax/digits.c -------------------------------------------------------------------------------- /test/flex_syntax/digits.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/flex_syntax/digits.re -------------------------------------------------------------------------------- /test/flex_syntax/namedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/flex_syntax/namedef.c -------------------------------------------------------------------------------- /test/flex_syntax/namedef.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/flex_syntax/namedef.re -------------------------------------------------------------------------------- /test/header/header_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/header/header_01.c -------------------------------------------------------------------------------- /test/header/header_01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/header/header_01.re -------------------------------------------------------------------------------- /test/header/header_02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/header/header_02.c -------------------------------------------------------------------------------- /test/header/header_02.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/header/header_02.re -------------------------------------------------------------------------------- /test/header/header_03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/header/header_03.c -------------------------------------------------------------------------------- /test/header/header_03.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/header/header_03.re -------------------------------------------------------------------------------- /test/include/include001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/include/include001.c -------------------------------------------------------------------------------- /test/include/include001.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/include/include001.re -------------------------------------------------------------------------------- /test/include/include001.re.c.inc: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | c = "c"; 3 | */ 4 | -------------------------------------------------------------------------------- /test/include/include002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/include/include002.c -------------------------------------------------------------------------------- /test/include/include002.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/include/include002.re -------------------------------------------------------------------------------- /test/include/include003.re.b.inc: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | b = "b"; 3 | */ 4 | -------------------------------------------------------------------------------- /test/include/include003.re.c.inc: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | c = "c"; 3 | */ 4 | -------------------------------------------------------------------------------- /test/include/include005_redef_error.re.inc: -------------------------------------------------------------------------------- 1 | * { return -2; } 2 | -------------------------------------------------------------------------------- /test/include/include006.re.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/include/nested/nested/include002.re.bd.inc: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | bd = [Bd]; 3 | */ 4 | -------------------------------------------------------------------------------- /test/include/nested/nested/include002.re.be.inc: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | be = [Be]; 3 | */ 4 | -------------------------------------------------------------------------------- /test/include/nested/nested/include002.re.cd.inc: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | cd = [Cd]; 3 | */ 4 | -------------------------------------------------------------------------------- /test/include/nested/nested/include002.re.ce.inc: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | ce = [Ce]; 3 | */ 4 | -------------------------------------------------------------------------------- /test/input1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input1.c -------------------------------------------------------------------------------- /test/input1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input1.re -------------------------------------------------------------------------------- /test/input10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input10.c -------------------------------------------------------------------------------- /test/input10.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input10.re -------------------------------------------------------------------------------- /test/input10_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input10_b.c -------------------------------------------------------------------------------- /test/input10_b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input10_b.re -------------------------------------------------------------------------------- /test/input10_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input10_s.c -------------------------------------------------------------------------------- /test/input10_s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input10_s.re -------------------------------------------------------------------------------- /test/input11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input11.c -------------------------------------------------------------------------------- /test/input11.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input11.re -------------------------------------------------------------------------------- /test/input11_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input11_b.c -------------------------------------------------------------------------------- /test/input11_b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input11_b.re -------------------------------------------------------------------------------- /test/input11_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input11_i.c -------------------------------------------------------------------------------- /test/input11_i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input11_i.re -------------------------------------------------------------------------------- /test/input11_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input11_s.c -------------------------------------------------------------------------------- /test/input11_s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input11_s.re -------------------------------------------------------------------------------- /test/input13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input13.c -------------------------------------------------------------------------------- /test/input13.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input13.re -------------------------------------------------------------------------------- /test/input2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input2.c -------------------------------------------------------------------------------- /test/input2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input2.re -------------------------------------------------------------------------------- /test/input2_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input2_b.c -------------------------------------------------------------------------------- /test/input2_b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input2_b.re -------------------------------------------------------------------------------- /test/input3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input3.c -------------------------------------------------------------------------------- /test/input3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input3.re -------------------------------------------------------------------------------- /test/input4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input4.c -------------------------------------------------------------------------------- /test/input4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input4.re -------------------------------------------------------------------------------- /test/input5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input5.c -------------------------------------------------------------------------------- /test/input5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input5.re -------------------------------------------------------------------------------- /test/input6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input6.c -------------------------------------------------------------------------------- /test/input6.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input6.re -------------------------------------------------------------------------------- /test/input7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input7.c -------------------------------------------------------------------------------- /test/input7.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input7.re -------------------------------------------------------------------------------- /test/input8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input8.c -------------------------------------------------------------------------------- /test/input8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input8.re -------------------------------------------------------------------------------- /test/input8_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input8_b.c -------------------------------------------------------------------------------- /test/input8_b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input8_b.re -------------------------------------------------------------------------------- /test/input8_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input8_g.c -------------------------------------------------------------------------------- /test/input8_g.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input8_g.re -------------------------------------------------------------------------------- /test/input9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input9.c -------------------------------------------------------------------------------- /test/input9.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/input9.re -------------------------------------------------------------------------------- /test/line-01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/line-01.c -------------------------------------------------------------------------------- /test/line-01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/line-01.re -------------------------------------------------------------------------------- /test/line-02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/line-02.c -------------------------------------------------------------------------------- /test/line-02.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/line-02.re -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/main.c -------------------------------------------------------------------------------- /test/main.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/main.re -------------------------------------------------------------------------------- /test/messages/large_regexp_01.c: -------------------------------------------------------------------------------- 1 | re2c: error: NFA depth exceeds limits 2 | -------------------------------------------------------------------------------- /test/messages/large_regexp_02.c: -------------------------------------------------------------------------------- 1 | re2c: error: NFA has too many states 2 | -------------------------------------------------------------------------------- /test/messages/large_regexp_03.c: -------------------------------------------------------------------------------- 1 | re2c: error: DFA has too many states 2 | -------------------------------------------------------------------------------- /test/messages/msg_00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_00.c -------------------------------------------------------------------------------- /test/messages/msg_00.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_00.re -------------------------------------------------------------------------------- /test/messages/msg_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_01.c -------------------------------------------------------------------------------- /test/messages/msg_01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_01.re -------------------------------------------------------------------------------- /test/messages/msg_02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_02.c -------------------------------------------------------------------------------- /test/messages/msg_02.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_02.re -------------------------------------------------------------------------------- /test/messages/msg_03.c: -------------------------------------------------------------------------------- 1 | messages/msg_03.re(2,17): error: unexpected end of input 2 | -------------------------------------------------------------------------------- /test/messages/msg_03.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_03.re -------------------------------------------------------------------------------- /test/messages/msg_04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_04.c -------------------------------------------------------------------------------- /test/messages/msg_04.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_04.re -------------------------------------------------------------------------------- /test/messages/msg_05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_05.c -------------------------------------------------------------------------------- /test/messages/msg_05.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_05.re -------------------------------------------------------------------------------- /test/messages/msg_06.c: -------------------------------------------------------------------------------- 1 | re2c: error: option --posix-closure was removed 2 | -------------------------------------------------------------------------------- /test/messages/msg_06.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_06.re -------------------------------------------------------------------------------- /test/messages/msg_07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_07.c -------------------------------------------------------------------------------- /test/messages/msg_07.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_07.re -------------------------------------------------------------------------------- /test/messages/msg_08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_08.c -------------------------------------------------------------------------------- /test/messages/msg_08.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_08.re -------------------------------------------------------------------------------- /test/messages/msg_09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_09.c -------------------------------------------------------------------------------- /test/messages/msg_09.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_09.re -------------------------------------------------------------------------------- /test/messages/msg_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_10.c -------------------------------------------------------------------------------- /test/messages/msg_10.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_10.re -------------------------------------------------------------------------------- /test/messages/msg_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_12.c -------------------------------------------------------------------------------- /test/messages/msg_12.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/msg_12.re -------------------------------------------------------------------------------- /test/messages/nullable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/messages/nullable.c -------------------------------------------------------------------------------- /test/newlines/nl_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/newlines/nl_01.c -------------------------------------------------------------------------------- /test/newlines/nl_01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/newlines/nl_01.re -------------------------------------------------------------------------------- /test/overflow-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/overflow-1.c -------------------------------------------------------------------------------- /test/overflow-1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/overflow-1.re -------------------------------------------------------------------------------- /test/overflow-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/overflow-2.c -------------------------------------------------------------------------------- /test/overflow-2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/overflow-2.re -------------------------------------------------------------------------------- /test/overflow-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/overflow-3.c -------------------------------------------------------------------------------- /test/overflow-3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/overflow-3.re -------------------------------------------------------------------------------- /test/overflow-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/overflow-4.c -------------------------------------------------------------------------------- /test/overflow-4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/overflow-4.re -------------------------------------------------------------------------------- /test/push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push.c -------------------------------------------------------------------------------- /test/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push.re -------------------------------------------------------------------------------- /test/push_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push_f.c -------------------------------------------------------------------------------- /test/push_f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push_f.re -------------------------------------------------------------------------------- /test/push_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push_fb.c -------------------------------------------------------------------------------- /test/push_fb.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push_fb.re -------------------------------------------------------------------------------- /test/push_fg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push_fg.c -------------------------------------------------------------------------------- /test/push_fg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push_fg.re -------------------------------------------------------------------------------- /test/push_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push_fs.c -------------------------------------------------------------------------------- /test/push_fs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/push_fs.re -------------------------------------------------------------------------------- /test/real_world/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/c.c -------------------------------------------------------------------------------- /test/real_world/c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/c.re -------------------------------------------------------------------------------- /test/real_world/cmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/cmmap.c -------------------------------------------------------------------------------- /test/real_world/cmmap.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/cmmap.re -------------------------------------------------------------------------------- /test/real_world/cnokw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/cnokw.c -------------------------------------------------------------------------------- /test/real_world/cnokw.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/cnokw.re -------------------------------------------------------------------------------- /test/real_world/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/cpp.c -------------------------------------------------------------------------------- /test/real_world/cpp.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/cpp.re -------------------------------------------------------------------------------- /test/real_world/modula.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/modula.c -------------------------------------------------------------------------------- /test/real_world/rexx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/rexx.c -------------------------------------------------------------------------------- /test/real_world/rexx.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/real_world/rexx.re -------------------------------------------------------------------------------- /test/repeater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/repeater.c -------------------------------------------------------------------------------- /test/repeater.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/repeater.re -------------------------------------------------------------------------------- /test/repeater2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/repeater2.c -------------------------------------------------------------------------------- /test/repeater2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/repeater2.re -------------------------------------------------------------------------------- /test/repeater_overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/repeater_overflow.c -------------------------------------------------------------------------------- /test/reuse/named_blocks_02.c: -------------------------------------------------------------------------------- 1 | re2c: error: cannot find `rules` block named `y` 2 | -------------------------------------------------------------------------------- /test/reuse/repeat-01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-01.c -------------------------------------------------------------------------------- /test/reuse/repeat-01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-01.re -------------------------------------------------------------------------------- /test/reuse/repeat-02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-02.c -------------------------------------------------------------------------------- /test/reuse/repeat-02.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-02.re -------------------------------------------------------------------------------- /test/reuse/repeat-03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-03.c -------------------------------------------------------------------------------- /test/reuse/repeat-03.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-03.re -------------------------------------------------------------------------------- /test/reuse/repeat-04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-04.c -------------------------------------------------------------------------------- /test/reuse/repeat-04.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-04.re -------------------------------------------------------------------------------- /test/reuse/repeat-05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-05.c -------------------------------------------------------------------------------- /test/reuse/repeat-05.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-05.re -------------------------------------------------------------------------------- /test/reuse/repeat-06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-06.c -------------------------------------------------------------------------------- /test/reuse/repeat-06.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-06.re -------------------------------------------------------------------------------- /test/reuse/repeat-07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-07.c -------------------------------------------------------------------------------- /test/reuse/repeat-07.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-07.re -------------------------------------------------------------------------------- /test/reuse/repeat-08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-08.c -------------------------------------------------------------------------------- /test/reuse/repeat-08.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-08.re -------------------------------------------------------------------------------- /test/reuse/repeat-09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-09.c -------------------------------------------------------------------------------- /test/reuse/repeat-09.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/reuse/repeat-09.re -------------------------------------------------------------------------------- /test/reuse/reuse_mixed_blocks_03.c: -------------------------------------------------------------------------------- 1 | re2c: error: cannot find `rules` block 2 | -------------------------------------------------------------------------------- /test/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/sample.c -------------------------------------------------------------------------------- /test/sample.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/sample.re -------------------------------------------------------------------------------- /test/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/simple.c -------------------------------------------------------------------------------- /test/simple.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/simple.re -------------------------------------------------------------------------------- /test/simple_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/simple_default.c -------------------------------------------------------------------------------- /test/simple_default.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/simple_default.re -------------------------------------------------------------------------------- /test/skeleton/error_golang.go: -------------------------------------------------------------------------------- 1 | re2c: error: skeleton is not supported for this backend 2 | -------------------------------------------------------------------------------- /test/strip_001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/strip_001.c -------------------------------------------------------------------------------- /test/strip_001.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/strip_001.re -------------------------------------------------------------------------------- /test/strip_002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/strip_002.c -------------------------------------------------------------------------------- /test/strip_002.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/strip_002.re -------------------------------------------------------------------------------- /test/strip_003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/strip_003.c -------------------------------------------------------------------------------- /test/strip_003.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/strip_003.re -------------------------------------------------------------------------------- /test/tags/bug121_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/bug121_fix.c -------------------------------------------------------------------------------- /test/tags/bug121_fix.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/bug121_fix.re -------------------------------------------------------------------------------- /test/tags/bug121_fix_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/bug121_fix_i.c -------------------------------------------------------------------------------- /test/tags/cond_star0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/cond_star0.c -------------------------------------------------------------------------------- /test/tags/cond_star0.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/cond_star0.re -------------------------------------------------------------------------------- /test/tags/cond_star1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/cond_star1.c -------------------------------------------------------------------------------- /test/tags/cond_star1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/cond_star1.re -------------------------------------------------------------------------------- /test/tags/cond_star2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/cond_star2.c -------------------------------------------------------------------------------- /test/tags/cond_star2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/cond_star2.re -------------------------------------------------------------------------------- /test/tags/conf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/conf1.c -------------------------------------------------------------------------------- /test/tags/conf1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/conf1.re -------------------------------------------------------------------------------- /test/tags/conf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/conf2.c -------------------------------------------------------------------------------- /test/tags/conf2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/conf2.re -------------------------------------------------------------------------------- /test/tags/conf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/conf3.c -------------------------------------------------------------------------------- /test/tags/conf3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/conf3.re -------------------------------------------------------------------------------- /test/tags/copy_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/copy_save.c -------------------------------------------------------------------------------- /test/tags/copy_save.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/copy_save.re -------------------------------------------------------------------------------- /test/tags/counter1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/counter1.c -------------------------------------------------------------------------------- /test/tags/counter1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/counter1.re -------------------------------------------------------------------------------- /test/tags/dedup0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup0.c -------------------------------------------------------------------------------- /test/tags/dedup0.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup0.re -------------------------------------------------------------------------------- /test/tags/dedup1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup1.c -------------------------------------------------------------------------------- /test/tags/dedup1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup1.re -------------------------------------------------------------------------------- /test/tags/dedup1_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup1_i.c -------------------------------------------------------------------------------- /test/tags/dedup1_i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup1_i.re -------------------------------------------------------------------------------- /test/tags/dedup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup2.c -------------------------------------------------------------------------------- /test/tags/dedup2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup2.re -------------------------------------------------------------------------------- /test/tags/dedup2_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup2_i.c -------------------------------------------------------------------------------- /test/tags/dedup2_i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup2_i.re -------------------------------------------------------------------------------- /test/tags/dedup3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup3.c -------------------------------------------------------------------------------- /test/tags/dedup3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup3.re -------------------------------------------------------------------------------- /test/tags/dedup4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup4.c -------------------------------------------------------------------------------- /test/tags/dedup4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup4.re -------------------------------------------------------------------------------- /test/tags/dedup5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup5.c -------------------------------------------------------------------------------- /test/tags/dedup5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/dedup5.re -------------------------------------------------------------------------------- /test/tags/error_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/error_1.c -------------------------------------------------------------------------------- /test/tags/error_1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/error_1.re -------------------------------------------------------------------------------- /test/tags/error_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/error_2.c -------------------------------------------------------------------------------- /test/tags/error_2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/error_2.re -------------------------------------------------------------------------------- /test/tags/fallback1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback1.c -------------------------------------------------------------------------------- /test/tags/fallback1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback1.re -------------------------------------------------------------------------------- /test/tags/fallback2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback2.c -------------------------------------------------------------------------------- /test/tags/fallback2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback2.re -------------------------------------------------------------------------------- /test/tags/fallback3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback3.c -------------------------------------------------------------------------------- /test/tags/fallback3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback3.re -------------------------------------------------------------------------------- /test/tags/fallback4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback4.c -------------------------------------------------------------------------------- /test/tags/fallback4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback4.re -------------------------------------------------------------------------------- /test/tags/fallback5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback5.c -------------------------------------------------------------------------------- /test/tags/fallback5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback5.re -------------------------------------------------------------------------------- /test/tags/fallback6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback6.c -------------------------------------------------------------------------------- /test/tags/fallback6.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fallback6.re -------------------------------------------------------------------------------- /test/tags/fix2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix2.c -------------------------------------------------------------------------------- /test/tags/fix2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix2.re -------------------------------------------------------------------------------- /test/tags/fix2_trail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix2_trail.c -------------------------------------------------------------------------------- /test/tags/fix2_trail.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix2_trail.re -------------------------------------------------------------------------------- /test/tags/fix3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix3.c -------------------------------------------------------------------------------- /test/tags/fix3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix3.re -------------------------------------------------------------------------------- /test/tags/fix3_trail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix3_trail.c -------------------------------------------------------------------------------- /test/tags/fix3_trail.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix3_trail.re -------------------------------------------------------------------------------- /test/tags/fix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix4.c -------------------------------------------------------------------------------- /test/tags/fix4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix4.re -------------------------------------------------------------------------------- /test/tags/fix4_trail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix4_trail.c -------------------------------------------------------------------------------- /test/tags/fix4_trail.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix4_trail.re -------------------------------------------------------------------------------- /test/tags/fix5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix5.c -------------------------------------------------------------------------------- /test/tags/fix5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix5.re -------------------------------------------------------------------------------- /test/tags/fix5_trail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix5_trail.c -------------------------------------------------------------------------------- /test/tags/fix5_trail.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/fix5_trail.re -------------------------------------------------------------------------------- /test/tags/interference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/interference.c -------------------------------------------------------------------------------- /test/tags/iter_plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/iter_plus.c -------------------------------------------------------------------------------- /test/tags/iter_plus.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/iter_plus.re -------------------------------------------------------------------------------- /test/tags/map_ord1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/map_ord1.c -------------------------------------------------------------------------------- /test/tags/map_ord1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/map_ord1.re -------------------------------------------------------------------------------- /test/tags/map_ord2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/map_ord2.c -------------------------------------------------------------------------------- /test/tags/map_ord2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/map_ord2.re -------------------------------------------------------------------------------- /test/tags/minimization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/minimization.c -------------------------------------------------------------------------------- /test/tags/topsort1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/topsort1.c -------------------------------------------------------------------------------- /test/tags/topsort1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/topsort1.re -------------------------------------------------------------------------------- /test/tags/topsort2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/topsort2.c -------------------------------------------------------------------------------- /test/tags/topsort2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/topsort2.re -------------------------------------------------------------------------------- /test/tags/twopass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/twopass.c -------------------------------------------------------------------------------- /test/tags/twopass.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/twopass.re -------------------------------------------------------------------------------- /test/tags/uniq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/uniq.c -------------------------------------------------------------------------------- /test/tags/uniq.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/uniq.re -------------------------------------------------------------------------------- /test/tags/uniq_nofix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/uniq_nofix.c -------------------------------------------------------------------------------- /test/tags/uniq_nofix.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/uniq_nofix.re -------------------------------------------------------------------------------- /test/tags/yyaccept1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/yyaccept1.c -------------------------------------------------------------------------------- /test/tags/yyaccept1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/tags/yyaccept1.re -------------------------------------------------------------------------------- /test/yyaccept_initial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/yyaccept_initial.c -------------------------------------------------------------------------------- /test/yyaccept_initial.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/yyaccept_initial.re -------------------------------------------------------------------------------- /test/yyaccept_missing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/yyaccept_missing.c -------------------------------------------------------------------------------- /test/yyaccept_missing.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skvadrik/re2c/HEAD/test/yyaccept_missing.re --------------------------------------------------------------------------------