ins.h
来自「a little DFA compiler.」· C头文件 代码 · 共 57 行
H
57 行
/* $Id: ins.h 535 2006-05-25 13:36:14Z helly $ */#ifndef _ins_h#define _ins_h#include "basics.h"namespace re2c{typedef unsigned short Char;const uint CHAR = 0;const uint GOTO = 1;const uint FORK = 2;const uint TERM = 3;const uint CTXT = 4;union Ins { struct { byte tag; byte marked; void *link; } i; struct { ushort value; ushort bump; void *link; } c;};inline bool isMarked(Ins *i){ return i->i.marked != 0;}inline void mark(Ins *i){ i->i.marked = true;}inline void unmark(Ins *i){ i->i.marked = false;}} // end namespace re2c#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?