⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 speed.c

📁 Newlib 嵌入式 C库 标准实现代码
💻 C
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -