termios.h
来自「用于嵌入式Linux系统的标准C的库函数」· C头文件 代码 · 共 18 行
H
18 行
/* libc/sys/linux/sys/termios.h - Terminal control definitions *//* Written 2000 by Werner Almesberger */#ifndef _SYS_TERMIOS_H#define _SYS_TERMIOS_H#include <linux/termios.h>#include <machine/termios.h>/* grr, this shouldn't have to be here */int tcgetattr(int fd,struct termios *termios_p);int tcsetattr(int fd,int optional_actions,const struct termios *termios_p);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?