📄 test.htm
字号:
<font color=#000000>\</font><BR>
<font color=#000000>}</font><BR>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>unput</font><font color=#000000>(</font><font color=#000000>c</font><font color=#000000>)</font> <font color=#000000>yyunput</font><font color=#000000>(</font> <font color=#000000>c</font><font color=#000000>,</font> <font color=#000000>yy_bp</font> <font color=#000000>)</font><BR>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>YY_USER_ACTION</font><BR>
<BR>
<font color=#000000>FILE</font> <font color=#000000>*</font><font color=#000000>yyin</font> <font color=#000000>=</font> <font color=#000000>(</font><font color=#000000>FILE</font> <font color=#000000>*</font><font color=#000000>)</font> <font color=#ee0000>0</font><font color=#000000>,</font> <font color=#000000>*</font><font color=#000000>yyout</font> <font color=#000000>=</font> <font color=#000000>(</font><font color=#000000>FILE</font> <font color=#000000>*</font><font color=#000000>)</font> <font color=#ee0000>0</font><font color=#000000>;</font><BR>
<font color=#0000ff>unsigned</font> <font color=#0000ff>char</font> <font color=#000000>*</font><font color=#000000>yytext</font><font color=#000000>;</font><BR>
<BR>
<font color=#000000>#</font> <font color=#000000>line</font> <font color=#ee0000>1</font> <font color=#057595>"cscanner.txt"</font><BR>
<font color=#a0009e>#define</font> <font color=#000000>INITIAL</font> <font color=#ee0000>0</font><BR>
<font color=#008800>/*C语言语法着色器*/</font>
<BR>
<font color=#008800>/*作者:RockCarry*/</font>
<BR>
<font color=#008800>/*定义部分*/</font>
<BR>
<font color=#000000>#</font> <font color=#000000>line</font> <font color=#ee0000>6</font> <font color=#057595>"cscanner.txt"</font><BR>
<font color=#008800>/*文件包含*/</font>
<BR>
<font color=#a0009e>#include</font> <font color=#000000><conio.h></font><BR>
<font color=#a0009e>#include</font> <font color=#000000><stdio.h></font><BR>
<font color=#a0009e>#include</font> <font color=#000000><stdlib.h></font><BR>
<font color=#a0009e>#include</font> <font color=#000000><string.h></font><BR>
<BR>
<font color=#008800>/*常量定义*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>KEY</font> <font color=#ee0000>0</font> <font color=#008800>/*关键字*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>IDEN</font> <font color=#ee0000>1</font> <font color=#008800>/*标识符*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>NUMBER</font> <font color=#ee0000>2</font> <font color=#008800>/*数字*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>STRING</font> <font color=#ee0000>3</font> <font color=#008800>/*字符串*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>DEFINE</font> <font color=#ee0000>4</font> <font color=#008800>/*预处理*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>COMMENT</font> <font color=#ee0000>5</font> <font color=#008800>/*注释*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>OP</font> <font color=#ee0000>6</font> <font color=#008800>/*运算符*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>ERRORCHAR</font> <font color=#ee0000>7</font> <font color=#008800>/*其他符号*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>FILENAME</font> <font color=#ee0000>8</font> <font color=#008800>/*文件名*/</font>
<BR>
<font color=#a0009e>#define</font> <font color=#000000>COLOR_NUM</font> <font color=#ee0000>9</font> <font color=#008800>/*颜色数*/</font>
<BR>
<BR>
<font color=#008800>/*全局变量定义*/</font>
<BR>
<font color=#0000ff>int</font> <font color=#000000>rownum</font> <font color=#000000>=</font> <font color=#ee0000>0</font><font color=#000000>;</font> <font color=#008800>/*当前行号*/</font>
<BR>
<font color=#0000ff>int</font> <font color=#000000>colnum</font> <font color=#000000>=</font> <font color=#ee0000>0</font><font color=#000000>;</font> <font color=#008800>/*当前列号*/</font>
<BR>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -