├── CMakeLists.txt ├── COPYING ├── README.md ├── cmake ├── FindLEMON.cmake ├── FindPERPLEX.cmake ├── FindRE2C.cmake ├── LEMON_Util.cmake ├── PERPLEX_Util.cmake └── RE2C_Util.cmake ├── lemon.dist ├── lemon ├── CMakeLists.txt ├── README ├── lemon.c └── lempar.c ├── perplex.dist ├── perplex ├── CHANGELOG.txt ├── CMake │ ├── FindLEMON.cmake │ ├── FindRE2C.cmake │ ├── LEMON_Util.cmake │ └── RE2C_Util.cmake ├── CMakeLists.txt ├── README.txt ├── mbo_getopt.cpp ├── mbo_getopt.h ├── parser.y ├── perplex.cpp ├── perplex.h ├── perplex_template.c ├── scanner.re └── token_type.h ├── re2c.dist └── re2c ├── CHANGELOG ├── CMake ├── FindLEMON.cmake ├── FindYACC.cmake └── LEMON_Util.cmake ├── CMakeLists.txt ├── README.in ├── actions.cc ├── basics.h ├── bootstrap └── scanner.cc ├── code.cc ├── code.h ├── code_names.h ├── config.h.in ├── config_w32.h.in ├── configure.in ├── dfa.cc ├── dfa.h ├── doc ├── loplas.ps └── sample.bib ├── examples ├── basemmap.c ├── c.re ├── cmmap.re ├── cnokw.re ├── cunroll.re ├── modula.re ├── pp-c.re ├── push.re ├── repeater.re ├── rexx │ ├── README │ ├── rexx.l │ └── scanio.c ├── sample.re └── simple.re ├── globals.h ├── htdocs └── manual.html.in ├── ins.h ├── lessons ├── 001_upn_calculator │ ├── 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.s.c │ ├── calc_006.s.re │ ├── calc_007.b.c │ ├── calc_007.b.re │ ├── calc_008.b.c │ ├── calc_008.b.re │ ├── readme.txt │ └── windows │ │ ├── BuildAndRun.bat │ │ ├── HiResTimer.h │ │ ├── TestRe2c-2005.sln │ │ ├── TestRe2c-2005.vcproj │ │ ├── TestRe2c.dsp │ │ ├── TestRe2c.dsw │ │ ├── TestRe2c.ncb │ │ ├── TestRe2c.sln │ │ ├── TestRe2c.suo │ │ ├── TestRe2c.vcproj │ │ ├── main.b.c │ │ └── main.b.re ├── 002_strip_comments │ ├── readme.txt │ ├── strip_001.s.c │ ├── strip_001.s.re │ ├── strip_002.s.c │ ├── strip_002.s.re │ ├── strip_003.b.c │ └── strip_003.b.re └── readme.txt ├── main.cc ├── mbo_getopt.cc ├── mbo_getopt.h ├── parser.yy ├── re.h ├── re2c.1.in ├── re2c.spec.in ├── re2c_parser.h ├── run_tests.sh.in ├── scanner.h ├── scanner.re ├── stream_lc.h ├── substr.cc ├── substr.h ├── test ├── bug1054496.c ├── bug1054496.re ├── bug1163046.c ├── bug1163046.re ├── bug1187785.c ├── bug1187785.re ├── bug1297658.c ├── bug1297658.re ├── bug1390174.c ├── bug1390174.re ├── bug1454253.c ├── bug1454253.re ├── bug1454253.s.c ├── bug1454253.s.re ├── bug1454253b.s.c ├── bug1454253b.s.re ├── bug1472770.b.c ├── bug1472770.b.re ├── bug1472770.c ├── bug1472770.f.c ├── bug1472770.f.re ├── bug1472770.re ├── bug1472770.s.c ├── bug1472770.s.re ├── bug1479044.b.c ├── bug1479044.b.re ├── bug1479044.c ├── bug1479044.re ├── bug1479044.s.c ├── bug1479044.s.re ├── bug1528269.c ├── bug1528269.re ├── bug1529351.c ├── bug1529351.re ├── bug1682718.c ├── bug1682718.is.c ├── bug1682718.is.re ├── bug1682718.re ├── bug1708378.ib.c ├── bug1708378.ib.re ├── bug1711240.eis.c ├── bug1711240.eis.re ├── c.c ├── c.re ├── casing-flags.i--case-insensitive.c ├── casing-flags.i--case-insensitive.re ├── casing-flags.i--case-inverted.c ├── casing-flags.i--case-inverted.re ├── casing-flags.i.c ├── casing-flags.i.re ├── cmmap.c ├── cmmap.re ├── cnokw.c ├── cnokw.re ├── cond_error_00.c ├── cond_error_00.re ├── cond_error_01.c.c ├── cond_error_01.c.re ├── cond_error_02.c.c ├── cond_error_02.c.re ├── cond_error_03.c.c ├── cond_error_03.c.re ├── cond_error_04.c.c ├── cond_error_04.c.re ├── cond_error_05.c.c ├── cond_error_05.c.re ├── cond_error_06.c.c ├── cond_error_06.c.re ├── cond_error_07.c.c ├── cond_error_07.c.re ├── cond_error_08.c.c ├── cond_error_08.c.re ├── cond_error_09.c.c ├── cond_error_09.c.re ├── cond_error_10.c.c ├── cond_error_10.c.re ├── cond_error_11.c.c ├── cond_error_11.c.re ├── condition_01.c.c ├── condition_01.c.re ├── condition_01a.c.c ├── condition_01a.c.re ├── condition_01b.c.c ├── condition_01b.c.re ├── condition_02.c.c ├── condition_02.c.re ├── condition_02.cg.c ├── condition_02.cg.re ├── condition_03.cg.c ├── condition_03.cg.re ├── condition_04.cg.c ├── condition_04.cg.re ├── condition_05.cg.c ├── condition_05.cg.re ├── condition_05.cgitcondition_05.cgit.h.c ├── condition_05.cgitcondition_05.cgit.h.h ├── condition_05.cgitcondition_05.cgit.h.re ├── condition_05.cgtcondition_05.cgt.h.c ├── condition_05.cgtcondition_05.cgt.h.h ├── condition_05.cgtcondition_05.cgt.h.re ├── condition_05.cs.c ├── condition_05.cs.re ├── condition_06.cs.c ├── condition_06.cs.re ├── condition_07.cbi.c ├── condition_07.cbi.re ├── condition_08.cbi.c ├── condition_08.cbi.re ├── condition_08.cbif.c ├── condition_08.cbif.re ├── condition_09.cbif.c ├── condition_09.cbif.re ├── condition_09.cgif.c ├── condition_09.cgif.re ├── condition_10.cgif.c ├── condition_10.cgif.re ├── condition_11.cg.c ├── condition_11.cg.re ├── condition_12.cgif.c ├── condition_12.cgif.re ├── condition_13.cg.c ├── condition_13.cg.re ├── condition_14.cbif.c ├── condition_14.cbif.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.csif.c ├── condition_15.csif.re ├── config1.c ├── config1.re ├── config10.c ├── config10.re ├── config2.s.c ├── config2.s.re ├── config3.c ├── config3.re ├── config4a.f.c ├── config4a.f.re ├── config4b.f.c ├── config4b.f.re ├── config4c.f.c ├── config4c.f.re ├── config4d.f.c ├── config4d.f.re ├── config4e.f.c ├── config4e.f.re ├── config4f.f.c ├── config4f.f.re ├── config4g.ifs.c ├── config4g.ifs.re ├── config5.c ├── config5.re ├── config6.c ├── config6.re ├── config7a.g.c ├── config7a.g.re ├── config7b.g.c ├── config7b.g.re ├── config8.c ├── config8.re ├── config9.b.c ├── config9.b.re ├── ctx.b.c ├── ctx.b.re ├── ctx.c ├── ctx.re ├── ctx.s.c ├── ctx.s.re ├── cunroll.c ├── cunroll.re ├── cvsignore.b.c ├── cvsignore.b.re ├── cvsignore.c ├── cvsignore.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 ├── dot.D.c ├── dot.D.re ├── dot_conditions.Dc.c ├── dot_conditions.Dc.re ├── error1.c ├── error1.re ├── error10.c ├── error10.re ├── error11.c ├── error11.re ├── error12.c ├── error12.re ├── error13.1.c ├── error13.1.re ├── error13.c ├── error13.re ├── error14.1.c ├── error14.1.re ├── error14.c ├── error14.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-01.i.c ├── flex-01.i.re ├── flex-01.iF.c ├── flex-01.iF.re ├── input1.c ├── input1.re ├── input10.b.c ├── input10.b.re ├── input10.c ├── input10.re ├── input10.s.c ├── input10.s.re ├── input11.b.c ├── input11.b.re ├── input11.c ├── input11.i.c ├── input11.i.re ├── input11.re ├── input11.s.c ├── input11.s.re ├── input12.boinput12.c.c ├── input12.boinput12.c.re ├── input12.oinput12.c.c ├── input12.oinput12.c.re ├── input13.c ├── input13.re ├── input2.c ├── input2.re ├── input3.c ├── input3.re ├── input4.c ├── input4.re ├── input5.c ├── input5.re ├── input6.c ├── input6.re ├── input7.c ├── input7.re ├── input8.b.c ├── input8.b.re ├── input8.c ├── input8.g.c ├── input8.g.re ├── input8.re ├── input9.c ├── input9.re ├── line-01.c ├── line-01.re ├── modula.c ├── modula.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 ├── parse_date.b.c ├── parse_date.b.re ├── parse_date.c ├── parse_date.db.c ├── parse_date.db.re ├── parse_date.g.c ├── parse_date.g.re ├── parse_date.re ├── parse_date.s.c ├── parse_date.s.re ├── parse_date_1_78.db.c ├── parse_date_1_78.db.re ├── push.c ├── push.f.c ├── push.f.re ├── push.fb.c ├── push.fb.re ├── push.fg.c ├── push.fg.re ├── push.fs.c ├── push.fs.re ├── push.re ├── repeat-00.cgi.c ├── repeat-00.cgi.re ├── repeat-01.cgir.c ├── repeat-01.cgir.re ├── repeat-02.cgir.c ├── repeat-02.cgir.re ├── repeat-03.cgir.c ├── repeat-03.cgir.re ├── repeat-04.cgir.c ├── repeat-04.cgir.re ├── repeat-05.cgir.c ├── repeat-05.cgir.re ├── repeat-06.gir.c ├── repeat-06.gir.re ├── repeat-07.gir.c ├── repeat-07.gir.re ├── repeater.c ├── repeater.re ├── sample.c ├── sample.re ├── scanner.c ├── scanner.fs.c ├── scanner.fs.re ├── scanner.re ├── scanner.s.c ├── scanner.s.re ├── simple.c ├── simple.re ├── yyaccept_missing.bci.c └── yyaccept_missing.bci.re ├── token.h └── translate.cc /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindLEMON.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/cmake/FindLEMON.cmake -------------------------------------------------------------------------------- /cmake/FindPERPLEX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/cmake/FindPERPLEX.cmake -------------------------------------------------------------------------------- /cmake/FindRE2C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/cmake/FindRE2C.cmake -------------------------------------------------------------------------------- /cmake/LEMON_Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/cmake/LEMON_Util.cmake -------------------------------------------------------------------------------- /cmake/PERPLEX_Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/cmake/PERPLEX_Util.cmake -------------------------------------------------------------------------------- /cmake/RE2C_Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/cmake/RE2C_Util.cmake -------------------------------------------------------------------------------- /lemon.dist: -------------------------------------------------------------------------------- 1 | SET(lemon_ignore_files 2 | README 3 | lempar.c 4 | ) 5 | -------------------------------------------------------------------------------- /lemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/lemon/CMakeLists.txt -------------------------------------------------------------------------------- /lemon/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/lemon/README -------------------------------------------------------------------------------- /lemon/lemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/lemon/lemon.c -------------------------------------------------------------------------------- /lemon/lempar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/lemon/lempar.c -------------------------------------------------------------------------------- /perplex.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex.dist -------------------------------------------------------------------------------- /perplex/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/CHANGELOG.txt -------------------------------------------------------------------------------- /perplex/CMake/FindLEMON.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/CMake/FindLEMON.cmake -------------------------------------------------------------------------------- /perplex/CMake/FindRE2C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/CMake/FindRE2C.cmake -------------------------------------------------------------------------------- /perplex/CMake/LEMON_Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/CMake/LEMON_Util.cmake -------------------------------------------------------------------------------- /perplex/CMake/RE2C_Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/CMake/RE2C_Util.cmake -------------------------------------------------------------------------------- /perplex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/CMakeLists.txt -------------------------------------------------------------------------------- /perplex/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/README.txt -------------------------------------------------------------------------------- /perplex/mbo_getopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/mbo_getopt.cpp -------------------------------------------------------------------------------- /perplex/mbo_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/mbo_getopt.h -------------------------------------------------------------------------------- /perplex/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/parser.y -------------------------------------------------------------------------------- /perplex/perplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/perplex.cpp -------------------------------------------------------------------------------- /perplex/perplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/perplex.h -------------------------------------------------------------------------------- /perplex/perplex_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/perplex_template.c -------------------------------------------------------------------------------- /perplex/scanner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/scanner.re -------------------------------------------------------------------------------- /perplex/token_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/perplex/token_type.h -------------------------------------------------------------------------------- /re2c.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c.dist -------------------------------------------------------------------------------- /re2c/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/CHANGELOG -------------------------------------------------------------------------------- /re2c/CMake/FindLEMON.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/CMake/FindLEMON.cmake -------------------------------------------------------------------------------- /re2c/CMake/FindYACC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/CMake/FindYACC.cmake -------------------------------------------------------------------------------- /re2c/CMake/LEMON_Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/CMake/LEMON_Util.cmake -------------------------------------------------------------------------------- /re2c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/CMakeLists.txt -------------------------------------------------------------------------------- /re2c/README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/README.in -------------------------------------------------------------------------------- /re2c/actions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/actions.cc -------------------------------------------------------------------------------- /re2c/basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/basics.h -------------------------------------------------------------------------------- /re2c/bootstrap/scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/bootstrap/scanner.cc -------------------------------------------------------------------------------- /re2c/code.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/code.cc -------------------------------------------------------------------------------- /re2c/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/code.h -------------------------------------------------------------------------------- /re2c/code_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/code_names.h -------------------------------------------------------------------------------- /re2c/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/config.h.in -------------------------------------------------------------------------------- /re2c/config_w32.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/config_w32.h.in -------------------------------------------------------------------------------- /re2c/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/configure.in -------------------------------------------------------------------------------- /re2c/dfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/dfa.cc -------------------------------------------------------------------------------- /re2c/dfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/dfa.h -------------------------------------------------------------------------------- /re2c/doc/loplas.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/doc/loplas.ps -------------------------------------------------------------------------------- /re2c/doc/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/doc/sample.bib -------------------------------------------------------------------------------- /re2c/examples/basemmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/basemmap.c -------------------------------------------------------------------------------- /re2c/examples/c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/c.re -------------------------------------------------------------------------------- /re2c/examples/cmmap.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/cmmap.re -------------------------------------------------------------------------------- /re2c/examples/cnokw.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/cnokw.re -------------------------------------------------------------------------------- /re2c/examples/cunroll.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/cunroll.re -------------------------------------------------------------------------------- /re2c/examples/modula.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/modula.re -------------------------------------------------------------------------------- /re2c/examples/pp-c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/pp-c.re -------------------------------------------------------------------------------- /re2c/examples/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/push.re -------------------------------------------------------------------------------- /re2c/examples/repeater.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/repeater.re -------------------------------------------------------------------------------- /re2c/examples/rexx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/rexx/README -------------------------------------------------------------------------------- /re2c/examples/rexx/rexx.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/rexx/rexx.l -------------------------------------------------------------------------------- /re2c/examples/rexx/scanio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/rexx/scanio.c -------------------------------------------------------------------------------- /re2c/examples/sample.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/sample.re -------------------------------------------------------------------------------- /re2c/examples/simple.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/examples/simple.re -------------------------------------------------------------------------------- /re2c/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/globals.h -------------------------------------------------------------------------------- /re2c/htdocs/manual.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/htdocs/manual.html.in -------------------------------------------------------------------------------- /re2c/ins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/ins.h -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_001.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_001.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_001.re -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_002.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_002.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_002.re -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_003.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_003.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_003.re -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_004.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_004.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_004.re -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_005.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_005.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_005.re -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_006.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_006.s.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_006.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_006.s.re -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_007.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_007.b.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_007.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_007.b.re -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_008.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_008.b.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/calc_008.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/calc_008.b.re -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/readme.txt -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/BuildAndRun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/BuildAndRun.bat -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/HiResTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/HiResTimer.h -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/TestRe2c-2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/TestRe2c-2005.sln -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/TestRe2c-2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/TestRe2c-2005.vcproj -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/TestRe2c.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/TestRe2c.dsp -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/TestRe2c.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/TestRe2c.dsw -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/TestRe2c.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/TestRe2c.ncb -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/TestRe2c.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/TestRe2c.sln -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/TestRe2c.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/TestRe2c.suo -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/TestRe2c.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/TestRe2c.vcproj -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/main.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/main.b.c -------------------------------------------------------------------------------- /re2c/lessons/001_upn_calculator/windows/main.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/001_upn_calculator/windows/main.b.re -------------------------------------------------------------------------------- /re2c/lessons/002_strip_comments/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/002_strip_comments/readme.txt -------------------------------------------------------------------------------- /re2c/lessons/002_strip_comments/strip_001.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/002_strip_comments/strip_001.s.c -------------------------------------------------------------------------------- /re2c/lessons/002_strip_comments/strip_001.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/002_strip_comments/strip_001.s.re -------------------------------------------------------------------------------- /re2c/lessons/002_strip_comments/strip_002.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/002_strip_comments/strip_002.s.c -------------------------------------------------------------------------------- /re2c/lessons/002_strip_comments/strip_002.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/002_strip_comments/strip_002.s.re -------------------------------------------------------------------------------- /re2c/lessons/002_strip_comments/strip_003.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/002_strip_comments/strip_003.b.c -------------------------------------------------------------------------------- /re2c/lessons/002_strip_comments/strip_003.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/002_strip_comments/strip_003.b.re -------------------------------------------------------------------------------- /re2c/lessons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/lessons/readme.txt -------------------------------------------------------------------------------- /re2c/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/main.cc -------------------------------------------------------------------------------- /re2c/mbo_getopt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/mbo_getopt.cc -------------------------------------------------------------------------------- /re2c/mbo_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/mbo_getopt.h -------------------------------------------------------------------------------- /re2c/parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/parser.yy -------------------------------------------------------------------------------- /re2c/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/re.h -------------------------------------------------------------------------------- /re2c/re2c.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/re2c.1.in -------------------------------------------------------------------------------- /re2c/re2c.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/re2c.spec.in -------------------------------------------------------------------------------- /re2c/re2c_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/re2c_parser.h -------------------------------------------------------------------------------- /re2c/run_tests.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/run_tests.sh.in -------------------------------------------------------------------------------- /re2c/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/scanner.h -------------------------------------------------------------------------------- /re2c/scanner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/scanner.re -------------------------------------------------------------------------------- /re2c/stream_lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/stream_lc.h -------------------------------------------------------------------------------- /re2c/substr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/substr.cc -------------------------------------------------------------------------------- /re2c/substr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/substr.h -------------------------------------------------------------------------------- /re2c/test/bug1054496.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1054496.c -------------------------------------------------------------------------------- /re2c/test/bug1054496.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1054496.re -------------------------------------------------------------------------------- /re2c/test/bug1163046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1163046.c -------------------------------------------------------------------------------- /re2c/test/bug1163046.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1163046.re -------------------------------------------------------------------------------- /re2c/test/bug1187785.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1187785.c -------------------------------------------------------------------------------- /re2c/test/bug1187785.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1187785.re -------------------------------------------------------------------------------- /re2c/test/bug1297658.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1297658.c -------------------------------------------------------------------------------- /re2c/test/bug1297658.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1297658.re -------------------------------------------------------------------------------- /re2c/test/bug1390174.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1390174.c -------------------------------------------------------------------------------- /re2c/test/bug1390174.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1390174.re -------------------------------------------------------------------------------- /re2c/test/bug1454253.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1454253.c -------------------------------------------------------------------------------- /re2c/test/bug1454253.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1454253.re -------------------------------------------------------------------------------- /re2c/test/bug1454253.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1454253.s.c -------------------------------------------------------------------------------- /re2c/test/bug1454253.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1454253.s.re -------------------------------------------------------------------------------- /re2c/test/bug1454253b.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1454253b.s.c -------------------------------------------------------------------------------- /re2c/test/bug1454253b.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1454253b.s.re -------------------------------------------------------------------------------- /re2c/test/bug1472770.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1472770.b.c -------------------------------------------------------------------------------- /re2c/test/bug1472770.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1472770.b.re -------------------------------------------------------------------------------- /re2c/test/bug1472770.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1472770.c -------------------------------------------------------------------------------- /re2c/test/bug1472770.f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1472770.f.c -------------------------------------------------------------------------------- /re2c/test/bug1472770.f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1472770.f.re -------------------------------------------------------------------------------- /re2c/test/bug1472770.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1472770.re -------------------------------------------------------------------------------- /re2c/test/bug1472770.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1472770.s.c -------------------------------------------------------------------------------- /re2c/test/bug1472770.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1472770.s.re -------------------------------------------------------------------------------- /re2c/test/bug1479044.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1479044.b.c -------------------------------------------------------------------------------- /re2c/test/bug1479044.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1479044.b.re -------------------------------------------------------------------------------- /re2c/test/bug1479044.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1479044.c -------------------------------------------------------------------------------- /re2c/test/bug1479044.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1479044.re -------------------------------------------------------------------------------- /re2c/test/bug1479044.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1479044.s.c -------------------------------------------------------------------------------- /re2c/test/bug1479044.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1479044.s.re -------------------------------------------------------------------------------- /re2c/test/bug1528269.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1528269.c -------------------------------------------------------------------------------- /re2c/test/bug1528269.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1528269.re -------------------------------------------------------------------------------- /re2c/test/bug1529351.c: -------------------------------------------------------------------------------- 1 | re2c: error: line 3, column 9: missing '}' 2 | -------------------------------------------------------------------------------- /re2c/test/bug1529351.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1529351.re -------------------------------------------------------------------------------- /re2c/test/bug1682718.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1682718.c -------------------------------------------------------------------------------- /re2c/test/bug1682718.is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1682718.is.c -------------------------------------------------------------------------------- /re2c/test/bug1682718.is.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1682718.is.re -------------------------------------------------------------------------------- /re2c/test/bug1682718.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1682718.re -------------------------------------------------------------------------------- /re2c/test/bug1708378.ib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1708378.ib.c -------------------------------------------------------------------------------- /re2c/test/bug1708378.ib.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1708378.ib.re -------------------------------------------------------------------------------- /re2c/test/bug1711240.eis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1711240.eis.c -------------------------------------------------------------------------------- /re2c/test/bug1711240.eis.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/bug1711240.eis.re -------------------------------------------------------------------------------- /re2c/test/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/c.c -------------------------------------------------------------------------------- /re2c/test/c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/c.re -------------------------------------------------------------------------------- /re2c/test/casing-flags.i--case-insensitive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/casing-flags.i--case-insensitive.c -------------------------------------------------------------------------------- /re2c/test/casing-flags.i--case-insensitive.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/casing-flags.i--case-insensitive.re -------------------------------------------------------------------------------- /re2c/test/casing-flags.i--case-inverted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/casing-flags.i--case-inverted.c -------------------------------------------------------------------------------- /re2c/test/casing-flags.i--case-inverted.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/casing-flags.i--case-inverted.re -------------------------------------------------------------------------------- /re2c/test/casing-flags.i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/casing-flags.i.c -------------------------------------------------------------------------------- /re2c/test/casing-flags.i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/casing-flags.i.re -------------------------------------------------------------------------------- /re2c/test/cmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cmmap.c -------------------------------------------------------------------------------- /re2c/test/cmmap.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cmmap.re -------------------------------------------------------------------------------- /re2c/test/cnokw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cnokw.c -------------------------------------------------------------------------------- /re2c/test/cnokw.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cnokw.re -------------------------------------------------------------------------------- /re2c/test/cond_error_00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_00.c -------------------------------------------------------------------------------- /re2c/test/cond_error_00.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_00.re -------------------------------------------------------------------------------- /re2c/test/cond_error_01.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_01.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_01.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | <> "a" { } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/cond_error_02.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_02.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_02.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | < > "a" { } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/cond_error_03.c.c: -------------------------------------------------------------------------------- 1 | re2c: error: line 3, column 5: no expression specified 2 | -------------------------------------------------------------------------------- /re2c/test/cond_error_03.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | { } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/cond_error_04.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_04.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_04.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | <,> "a" { } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/cond_error_05.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_05.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_05.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | <+> "a" { } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/cond_error_06.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_06.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_06.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | "a" { } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/cond_error_07.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_07.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_07.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | "a" { } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/cond_error_08.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_08.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_08.c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_08.c.re -------------------------------------------------------------------------------- /re2c/test/cond_error_09.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_09.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_09.c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_09.c.re -------------------------------------------------------------------------------- /re2c/test/cond_error_10.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_10.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_10.c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_10.c.re -------------------------------------------------------------------------------- /re2c/test/cond_error_11.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_11.c.c -------------------------------------------------------------------------------- /re2c/test/cond_error_11.c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cond_error_11.c.re -------------------------------------------------------------------------------- /re2c/test/condition_01.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_01.c.c -------------------------------------------------------------------------------- /re2c/test/condition_01.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | < a , b > "ab" { } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/condition_01a.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_01a.c.c -------------------------------------------------------------------------------- /re2c/test/condition_01a.c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_01a.c.re -------------------------------------------------------------------------------- /re2c/test/condition_01b.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_01b.c.c -------------------------------------------------------------------------------- /re2c/test/condition_01b.c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_01b.c.re -------------------------------------------------------------------------------- /re2c/test/condition_02.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_02.c.c -------------------------------------------------------------------------------- /re2c/test/condition_02.c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_02.c.re -------------------------------------------------------------------------------- /re2c/test/condition_02.cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_02.cg.c -------------------------------------------------------------------------------- /re2c/test/condition_02.cg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_02.cg.re -------------------------------------------------------------------------------- /re2c/test/condition_03.cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_03.cg.c -------------------------------------------------------------------------------- /re2c/test/condition_03.cg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_03.cg.re -------------------------------------------------------------------------------- /re2c/test/condition_04.cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_04.cg.c -------------------------------------------------------------------------------- /re2c/test/condition_04.cg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_04.cg.re -------------------------------------------------------------------------------- /re2c/test/condition_05.cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cg.c -------------------------------------------------------------------------------- /re2c/test/condition_05.cg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cg.re -------------------------------------------------------------------------------- /re2c/test/condition_05.cgitcondition_05.cgit.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cgitcondition_05.cgit.h.c -------------------------------------------------------------------------------- /re2c/test/condition_05.cgitcondition_05.cgit.h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cgitcondition_05.cgit.h.h -------------------------------------------------------------------------------- /re2c/test/condition_05.cgitcondition_05.cgit.h.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cgitcondition_05.cgit.h.re -------------------------------------------------------------------------------- /re2c/test/condition_05.cgtcondition_05.cgt.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cgtcondition_05.cgt.h.c -------------------------------------------------------------------------------- /re2c/test/condition_05.cgtcondition_05.cgt.h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cgtcondition_05.cgt.h.h -------------------------------------------------------------------------------- /re2c/test/condition_05.cgtcondition_05.cgt.h.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cgtcondition_05.cgt.h.re -------------------------------------------------------------------------------- /re2c/test/condition_05.cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cs.c -------------------------------------------------------------------------------- /re2c/test/condition_05.cs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_05.cs.re -------------------------------------------------------------------------------- /re2c/test/condition_06.cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_06.cs.c -------------------------------------------------------------------------------- /re2c/test/condition_06.cs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_06.cs.re -------------------------------------------------------------------------------- /re2c/test/condition_07.cbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_07.cbi.c -------------------------------------------------------------------------------- /re2c/test/condition_07.cbi.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_07.cbi.re -------------------------------------------------------------------------------- /re2c/test/condition_08.cbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_08.cbi.c -------------------------------------------------------------------------------- /re2c/test/condition_08.cbi.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_08.cbi.re -------------------------------------------------------------------------------- /re2c/test/condition_08.cbif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_08.cbif.c -------------------------------------------------------------------------------- /re2c/test/condition_08.cbif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_08.cbif.re -------------------------------------------------------------------------------- /re2c/test/condition_09.cbif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_09.cbif.c -------------------------------------------------------------------------------- /re2c/test/condition_09.cbif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_09.cbif.re -------------------------------------------------------------------------------- /re2c/test/condition_09.cgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_09.cgif.c -------------------------------------------------------------------------------- /re2c/test/condition_09.cgif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_09.cgif.re -------------------------------------------------------------------------------- /re2c/test/condition_10.cgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_10.cgif.c -------------------------------------------------------------------------------- /re2c/test/condition_10.cgif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_10.cgif.re -------------------------------------------------------------------------------- /re2c/test/condition_11.cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_11.cg.c -------------------------------------------------------------------------------- /re2c/test/condition_11.cg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_11.cg.re -------------------------------------------------------------------------------- /re2c/test/condition_12.cgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_12.cgif.c -------------------------------------------------------------------------------- /re2c/test/condition_12.cgif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_12.cgif.re -------------------------------------------------------------------------------- /re2c/test/condition_13.cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_13.cg.c -------------------------------------------------------------------------------- /re2c/test/condition_13.cg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_13.cg.re -------------------------------------------------------------------------------- /re2c/test/condition_14.cbif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_14.cbif.c -------------------------------------------------------------------------------- /re2c/test/condition_14.cbif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_14.cbif.re -------------------------------------------------------------------------------- /re2c/test/condition_14.cgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_14.cgif.c -------------------------------------------------------------------------------- /re2c/test/condition_14.cgif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_14.cgif.re -------------------------------------------------------------------------------- /re2c/test/condition_14.cif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_14.cif.c -------------------------------------------------------------------------------- /re2c/test/condition_14.cif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_14.cif.re -------------------------------------------------------------------------------- /re2c/test/condition_14.csif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_14.csif.c -------------------------------------------------------------------------------- /re2c/test/condition_14.csif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_14.csif.re -------------------------------------------------------------------------------- /re2c/test/condition_15.csif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_15.csif.c -------------------------------------------------------------------------------- /re2c/test/condition_15.csif.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/condition_15.csif.re -------------------------------------------------------------------------------- /re2c/test/config1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config1.c -------------------------------------------------------------------------------- /re2c/test/config1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config1.re -------------------------------------------------------------------------------- /re2c/test/config10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config10.c -------------------------------------------------------------------------------- /re2c/test/config10.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config10.re -------------------------------------------------------------------------------- /re2c/test/config2.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config2.s.c -------------------------------------------------------------------------------- /re2c/test/config2.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config2.s.re -------------------------------------------------------------------------------- /re2c/test/config3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config3.c -------------------------------------------------------------------------------- /re2c/test/config3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config3.re -------------------------------------------------------------------------------- /re2c/test/config4a.f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4a.f.c -------------------------------------------------------------------------------- /re2c/test/config4a.f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4a.f.re -------------------------------------------------------------------------------- /re2c/test/config4b.f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4b.f.c -------------------------------------------------------------------------------- /re2c/test/config4b.f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4b.f.re -------------------------------------------------------------------------------- /re2c/test/config4c.f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4c.f.c -------------------------------------------------------------------------------- /re2c/test/config4c.f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4c.f.re -------------------------------------------------------------------------------- /re2c/test/config4d.f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4d.f.c -------------------------------------------------------------------------------- /re2c/test/config4d.f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4d.f.re -------------------------------------------------------------------------------- /re2c/test/config4e.f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4e.f.c -------------------------------------------------------------------------------- /re2c/test/config4e.f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4e.f.re -------------------------------------------------------------------------------- /re2c/test/config4f.f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4f.f.c -------------------------------------------------------------------------------- /re2c/test/config4f.f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4f.f.re -------------------------------------------------------------------------------- /re2c/test/config4g.ifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4g.ifs.c -------------------------------------------------------------------------------- /re2c/test/config4g.ifs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config4g.ifs.re -------------------------------------------------------------------------------- /re2c/test/config5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config5.c -------------------------------------------------------------------------------- /re2c/test/config5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config5.re -------------------------------------------------------------------------------- /re2c/test/config6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config6.c -------------------------------------------------------------------------------- /re2c/test/config6.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config6.re -------------------------------------------------------------------------------- /re2c/test/config7a.g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config7a.g.c -------------------------------------------------------------------------------- /re2c/test/config7a.g.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config7a.g.re -------------------------------------------------------------------------------- /re2c/test/config7b.g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config7b.g.c -------------------------------------------------------------------------------- /re2c/test/config7b.g.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config7b.g.re -------------------------------------------------------------------------------- /re2c/test/config8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config8.c -------------------------------------------------------------------------------- /re2c/test/config8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config8.re -------------------------------------------------------------------------------- /re2c/test/config9.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config9.b.c -------------------------------------------------------------------------------- /re2c/test/config9.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/config9.b.re -------------------------------------------------------------------------------- /re2c/test/ctx.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/ctx.b.c -------------------------------------------------------------------------------- /re2c/test/ctx.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/ctx.b.re -------------------------------------------------------------------------------- /re2c/test/ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/ctx.c -------------------------------------------------------------------------------- /re2c/test/ctx.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/ctx.re -------------------------------------------------------------------------------- /re2c/test/ctx.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/ctx.s.c -------------------------------------------------------------------------------- /re2c/test/ctx.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/ctx.s.re -------------------------------------------------------------------------------- /re2c/test/cunroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cunroll.c -------------------------------------------------------------------------------- /re2c/test/cunroll.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cunroll.re -------------------------------------------------------------------------------- /re2c/test/cvsignore.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.b.c -------------------------------------------------------------------------------- /re2c/test/cvsignore.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.b.re -------------------------------------------------------------------------------- /re2c/test/cvsignore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.c -------------------------------------------------------------------------------- /re2c/test/cvsignore.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.re -------------------------------------------------------------------------------- /re2c/test/cvsignore.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.s.c -------------------------------------------------------------------------------- /re2c/test/cvsignore.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.s.re -------------------------------------------------------------------------------- /re2c/test/cvsignore.u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.u.c -------------------------------------------------------------------------------- /re2c/test/cvsignore.u.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.u.re -------------------------------------------------------------------------------- /re2c/test/cvsignore.ub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.ub.c -------------------------------------------------------------------------------- /re2c/test/cvsignore.ub.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.ub.re -------------------------------------------------------------------------------- /re2c/test/cvsignore.w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.w.c -------------------------------------------------------------------------------- /re2c/test/cvsignore.w.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.w.re -------------------------------------------------------------------------------- /re2c/test/cvsignore.wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.wb.c -------------------------------------------------------------------------------- /re2c/test/cvsignore.wb.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/cvsignore.wb.re -------------------------------------------------------------------------------- /re2c/test/dot.D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/dot.D.c -------------------------------------------------------------------------------- /re2c/test/dot.D.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/dot.D.re -------------------------------------------------------------------------------- /re2c/test/dot_conditions.Dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/dot_conditions.Dc.c -------------------------------------------------------------------------------- /re2c/test/dot_conditions.Dc.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/dot_conditions.Dc.re -------------------------------------------------------------------------------- /re2c/test/error1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error1.c -------------------------------------------------------------------------------- /re2c/test/error1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error1.re -------------------------------------------------------------------------------- /re2c/test/error10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error10.c -------------------------------------------------------------------------------- /re2c/test/error10.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error10.re -------------------------------------------------------------------------------- /re2c/test/error11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error11.c -------------------------------------------------------------------------------- /re2c/test/error11.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error11.re -------------------------------------------------------------------------------- /re2c/test/error12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error12.c -------------------------------------------------------------------------------- /re2c/test/error12.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error12.re -------------------------------------------------------------------------------- /re2c/test/error13.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error13.1.c -------------------------------------------------------------------------------- /re2c/test/error13.1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error13.1.re -------------------------------------------------------------------------------- /re2c/test/error13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error13.c -------------------------------------------------------------------------------- /re2c/test/error13.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error13.re -------------------------------------------------------------------------------- /re2c/test/error14.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error14.1.c -------------------------------------------------------------------------------- /re2c/test/error14.1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error14.1.re -------------------------------------------------------------------------------- /re2c/test/error14.c: -------------------------------------------------------------------------------- 1 | re2c: error: line 9, column 1: cannot generate YYMAXFILL twice 2 | -------------------------------------------------------------------------------- /re2c/test/error14.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error14.re -------------------------------------------------------------------------------- /re2c/test/error2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error2.c -------------------------------------------------------------------------------- /re2c/test/error2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error2.re -------------------------------------------------------------------------------- /re2c/test/error3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error3.c -------------------------------------------------------------------------------- /re2c/test/error3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error3.re -------------------------------------------------------------------------------- /re2c/test/error4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error4.c -------------------------------------------------------------------------------- /re2c/test/error4.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | [\x0] {} 3 | */ 4 | -------------------------------------------------------------------------------- /re2c/test/error5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error5.c -------------------------------------------------------------------------------- /re2c/test/error5.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | [\x0ZYY] {} 3 | */ 4 | -------------------------------------------------------------------------------- /re2c/test/error6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error6.c -------------------------------------------------------------------------------- /re2c/test/error6.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | [\X123] {} 3 | */ 4 | -------------------------------------------------------------------------------- /re2c/test/error7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error7.c -------------------------------------------------------------------------------- /re2c/test/error7.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | [\400YY] {} 3 | */ 4 | -------------------------------------------------------------------------------- /re2c/test/error8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error8.c -------------------------------------------------------------------------------- /re2c/test/error8.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | [\090YY] {} 3 | */ 4 | -------------------------------------------------------------------------------- /re2c/test/error9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/error9.c -------------------------------------------------------------------------------- /re2c/test/error9.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | [\009YY] {} 3 | */ 4 | -------------------------------------------------------------------------------- /re2c/test/flex-01.i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/flex-01.i.c -------------------------------------------------------------------------------- /re2c/test/flex-01.i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/flex-01.i.re -------------------------------------------------------------------------------- /re2c/test/flex-01.iF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/flex-01.iF.c -------------------------------------------------------------------------------- /re2c/test/flex-01.iF.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/flex-01.iF.re -------------------------------------------------------------------------------- /re2c/test/input1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input1.c -------------------------------------------------------------------------------- /re2c/test/input1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input1.re -------------------------------------------------------------------------------- /re2c/test/input10.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input10.b.c -------------------------------------------------------------------------------- /re2c/test/input10.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input10.b.re -------------------------------------------------------------------------------- /re2c/test/input10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input10.c -------------------------------------------------------------------------------- /re2c/test/input10.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input10.re -------------------------------------------------------------------------------- /re2c/test/input10.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input10.s.c -------------------------------------------------------------------------------- /re2c/test/input10.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input10.s.re -------------------------------------------------------------------------------- /re2c/test/input11.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input11.b.c -------------------------------------------------------------------------------- /re2c/test/input11.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input11.b.re -------------------------------------------------------------------------------- /re2c/test/input11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input11.c -------------------------------------------------------------------------------- /re2c/test/input11.i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input11.i.c -------------------------------------------------------------------------------- /re2c/test/input11.i.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input11.i.re -------------------------------------------------------------------------------- /re2c/test/input11.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input11.re -------------------------------------------------------------------------------- /re2c/test/input11.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input11.s.c -------------------------------------------------------------------------------- /re2c/test/input11.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input11.s.re -------------------------------------------------------------------------------- /re2c/test/input12.boinput12.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input12.boinput12.c.c -------------------------------------------------------------------------------- /re2c/test/input12.boinput12.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | [a]+ "bb" { return 1; } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/input12.oinput12.c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input12.oinput12.c.c -------------------------------------------------------------------------------- /re2c/test/input12.oinput12.c.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | [a]+ "bb" { return 1; } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/input13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input13.c -------------------------------------------------------------------------------- /re2c/test/input13.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input13.re -------------------------------------------------------------------------------- /re2c/test/input2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input2.c -------------------------------------------------------------------------------- /re2c/test/input2.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | [a]+ "bb" { return 1; } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/input3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input3.c -------------------------------------------------------------------------------- /re2c/test/input3.re: -------------------------------------------------------------------------------- 1 | /*!re2c 2 | 3 | "a" [a]* "bb" { return 1; } 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /re2c/test/input4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input4.c -------------------------------------------------------------------------------- /re2c/test/input4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input4.re -------------------------------------------------------------------------------- /re2c/test/input5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input5.c -------------------------------------------------------------------------------- /re2c/test/input5.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input5.re -------------------------------------------------------------------------------- /re2c/test/input6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input6.c -------------------------------------------------------------------------------- /re2c/test/input6.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input6.re -------------------------------------------------------------------------------- /re2c/test/input7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input7.c -------------------------------------------------------------------------------- /re2c/test/input7.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input7.re -------------------------------------------------------------------------------- /re2c/test/input8.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input8.b.c -------------------------------------------------------------------------------- /re2c/test/input8.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input8.b.re -------------------------------------------------------------------------------- /re2c/test/input8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input8.c -------------------------------------------------------------------------------- /re2c/test/input8.g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input8.g.c -------------------------------------------------------------------------------- /re2c/test/input8.g.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input8.g.re -------------------------------------------------------------------------------- /re2c/test/input8.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input8.re -------------------------------------------------------------------------------- /re2c/test/input9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input9.c -------------------------------------------------------------------------------- /re2c/test/input9.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/input9.re -------------------------------------------------------------------------------- /re2c/test/line-01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/line-01.c -------------------------------------------------------------------------------- /re2c/test/line-01.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/line-01.re -------------------------------------------------------------------------------- /re2c/test/modula.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/modula.c -------------------------------------------------------------------------------- /re2c/test/modula.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/modula.re -------------------------------------------------------------------------------- /re2c/test/overflow-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/overflow-1.c -------------------------------------------------------------------------------- /re2c/test/overflow-1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/overflow-1.re -------------------------------------------------------------------------------- /re2c/test/overflow-2.c: -------------------------------------------------------------------------------- 1 | re2c: error: line 2, column 8219: can't find symbol 2 | -------------------------------------------------------------------------------- /re2c/test/overflow-2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/overflow-2.re -------------------------------------------------------------------------------- /re2c/test/overflow-3.c: -------------------------------------------------------------------------------- 1 | re2c: error: line 2, column 8219: can't find symbol 2 | -------------------------------------------------------------------------------- /re2c/test/overflow-3.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/overflow-3.re -------------------------------------------------------------------------------- /re2c/test/overflow-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/overflow-4.c -------------------------------------------------------------------------------- /re2c/test/overflow-4.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/overflow-4.re -------------------------------------------------------------------------------- /re2c/test/parse_date.b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.b.c -------------------------------------------------------------------------------- /re2c/test/parse_date.b.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.b.re -------------------------------------------------------------------------------- /re2c/test/parse_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.c -------------------------------------------------------------------------------- /re2c/test/parse_date.db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.db.c -------------------------------------------------------------------------------- /re2c/test/parse_date.db.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.db.re -------------------------------------------------------------------------------- /re2c/test/parse_date.g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.g.c -------------------------------------------------------------------------------- /re2c/test/parse_date.g.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.g.re -------------------------------------------------------------------------------- /re2c/test/parse_date.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.re -------------------------------------------------------------------------------- /re2c/test/parse_date.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.s.c -------------------------------------------------------------------------------- /re2c/test/parse_date.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date.s.re -------------------------------------------------------------------------------- /re2c/test/parse_date_1_78.db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date_1_78.db.c -------------------------------------------------------------------------------- /re2c/test/parse_date_1_78.db.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/parse_date_1_78.db.re -------------------------------------------------------------------------------- /re2c/test/push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.c -------------------------------------------------------------------------------- /re2c/test/push.f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.f.c -------------------------------------------------------------------------------- /re2c/test/push.f.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.f.re -------------------------------------------------------------------------------- /re2c/test/push.fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.fb.c -------------------------------------------------------------------------------- /re2c/test/push.fb.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.fb.re -------------------------------------------------------------------------------- /re2c/test/push.fg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.fg.c -------------------------------------------------------------------------------- /re2c/test/push.fg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.fg.re -------------------------------------------------------------------------------- /re2c/test/push.fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.fs.c -------------------------------------------------------------------------------- /re2c/test/push.fs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.fs.re -------------------------------------------------------------------------------- /re2c/test/push.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/push.re -------------------------------------------------------------------------------- /re2c/test/repeat-00.cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-00.cgi.c -------------------------------------------------------------------------------- /re2c/test/repeat-00.cgi.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-00.cgi.re -------------------------------------------------------------------------------- /re2c/test/repeat-01.cgir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-01.cgir.c -------------------------------------------------------------------------------- /re2c/test/repeat-01.cgir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-01.cgir.re -------------------------------------------------------------------------------- /re2c/test/repeat-02.cgir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-02.cgir.c -------------------------------------------------------------------------------- /re2c/test/repeat-02.cgir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-02.cgir.re -------------------------------------------------------------------------------- /re2c/test/repeat-03.cgir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-03.cgir.c -------------------------------------------------------------------------------- /re2c/test/repeat-03.cgir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-03.cgir.re -------------------------------------------------------------------------------- /re2c/test/repeat-04.cgir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-04.cgir.c -------------------------------------------------------------------------------- /re2c/test/repeat-04.cgir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-04.cgir.re -------------------------------------------------------------------------------- /re2c/test/repeat-05.cgir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-05.cgir.c -------------------------------------------------------------------------------- /re2c/test/repeat-05.cgir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-05.cgir.re -------------------------------------------------------------------------------- /re2c/test/repeat-06.gir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-06.gir.c -------------------------------------------------------------------------------- /re2c/test/repeat-06.gir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-06.gir.re -------------------------------------------------------------------------------- /re2c/test/repeat-07.gir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-07.gir.c -------------------------------------------------------------------------------- /re2c/test/repeat-07.gir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeat-07.gir.re -------------------------------------------------------------------------------- /re2c/test/repeater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeater.c -------------------------------------------------------------------------------- /re2c/test/repeater.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/repeater.re -------------------------------------------------------------------------------- /re2c/test/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/sample.c -------------------------------------------------------------------------------- /re2c/test/sample.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/sample.re -------------------------------------------------------------------------------- /re2c/test/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/scanner.c -------------------------------------------------------------------------------- /re2c/test/scanner.fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/scanner.fs.c -------------------------------------------------------------------------------- /re2c/test/scanner.fs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/scanner.fs.re -------------------------------------------------------------------------------- /re2c/test/scanner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/scanner.re -------------------------------------------------------------------------------- /re2c/test/scanner.s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/scanner.s.c -------------------------------------------------------------------------------- /re2c/test/scanner.s.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/scanner.s.re -------------------------------------------------------------------------------- /re2c/test/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/simple.c -------------------------------------------------------------------------------- /re2c/test/simple.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/simple.re -------------------------------------------------------------------------------- /re2c/test/yyaccept_missing.bci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/yyaccept_missing.bci.c -------------------------------------------------------------------------------- /re2c/test/yyaccept_missing.bci.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/test/yyaccept_missing.bci.re -------------------------------------------------------------------------------- /re2c/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/token.h -------------------------------------------------------------------------------- /re2c/translate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepcode/baffledCitrus/HEAD/re2c/translate.cc --------------------------------------------------------------------------------