output compiles

This commit is contained in:
anon
2024-12-12 09:42:40 +01:00
parent c3c3a4edde
commit ef95a216be
8 changed files with 253 additions and 119 deletions

View File

@ -20,7 +20,11 @@ int mlookup(const char * s, int state) {\n\
const char * yy_lex_str_start = "\n\
int yylex(const char * s) {\n\
int state = 0;\n\
for (const char * ss = s; *ss != '\\0'; ss += (mlen ? mlen : 1)) {\n\
for (\n\
const char * ss = s;\n\
*ss != '\\0';\n\
ss += ((mlen ? mlen : 1) * direction)\n\
) {\n\
int match = mlookup(ss, state_table[state]);\n\
if (match != NO_MATCH) {\n\
\n\