error3.re
来自「a little DFA compiler.」· RE 代码 · 共 22 行
RE
22 行
#include <stdlib.h>#include <stdio.h>#include <string.h>#define RET(n) return nint scan(const char *s, int l) {const char *p = s;const char *q;#define YYCTYPE char#define YYCURSOR p#define YYLIMIT (s+l)#define YYMARKER q#define YYFILL(n)/*!re2c any = [\000-\377]; [a]] {RET(1);} any {RET(0);}*/}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?