speed.c
来自「标准c库代码,可以应用于各个系统提供了大量的基本函数」· C语言 代码 · 共 25 行
C
25 行
#define _NO_MACROS#include <sys/termios.h>speed_tcfgetospeed(const struct termios *tp) { return tp->c_ospeed;}intcfsetospeed(struct termios *tp, speed_t speed) { tp->c_ospeed = speed; return 0;}speed_tcfgetispeed(const struct termios *tp) { return tp->c_ispeed;}intcfsetispeed(struct termios *tp, speed_t speed) { tp->c_ispeed = speed; return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?