_tcflow.c
来自「操作系统源代码」· C语言 代码 · 共 18 行
C
18 行
/*posix/_tcflow.cCreated: June 8, 1993 by Philip Homburg*/#define tcflow _tcflow#define ioctl _ioctl#include <termios.h>#include <sys/ioctl.h>int tcflow(fd, action)int fd;int action;{ return(ioctl(fd, TCFLOW, &action));}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?