_tcflow.c

来自「MINIX系统源码」· C语言 代码 · 共 18 行

C
18
字号
/*
posix/_tcflow.c

Created:	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 + -
显示快捷键?