dep_cfmakeraw.c

来自「pc 透過simens mobile phone 連線,可直接傳訊.」· C语言 代码 · 共 15 行

C
15
字号
/* * this should replace the functionality of cfmakeraw * it implements exactly what "man termios" says about it */#include "depincludes.h"int cfmakeraw(struct termios *termios_p) {  termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);  termios_p->c_oflag &= ~OPOST;  termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);  termios_p->c_cflag &= ~(CSIZE|PARENB);  termios_p->c_cflag |= CS8;  return 1;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?