📄 termio.h
字号:
#pragma message ("home made termio.h included for windows.")#ifndef termio #pragma message ("including struct termios") typedef unsigned char cc_t; typedef unsigned short tcflag_t; typedef unsigned char speed_t; struct termios { tcflag_t c_iflag; tcflag_t c_oflag; tcflag_t c_cflag; tcflag_t c_lflag; char c_line; cc_t c_cc[100]; speed_t c_ispeed; speed_t c_ospeed; }; #pragma message ("#define termio termios") #define termio termios#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -