📄 init.cpp
字号:
//init.c
#include "stdafx.h"
#include "global.h"
struct entry keywords[]=
{
"div",DIV,
"mod",MOD,
"DIV",DIV,
"MOD",MOD,
0,0
};
void init()
{
struct entry *p;
for(p=keywords;p->token;p++)
insert(p->lexptr,p->token);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -