termio.h
来自「这是一个Linux下的集成开发环境」· C头文件 代码 · 共 22 行
H
22 行
#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 + =
减小字号Ctrl + -
显示快捷键?