📄 name.h
字号:
#ifndef NAME_H#define NAME_H/* * install(& struct Name) arrange for object to be found later * * screen(name) * find a name in a table * if nothing found, enter new(Var, name) into table * return associated token and pointer to structure */extern void * symbol; /* -> last Name found by screen() */void install (const void * symbol);int screen (const char * name);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -