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

📄 fb.h

📁 在字符终端显示时钟 fb
💻 H
字号:
#ifndef _LOCAL_FB_H_#define _LOCAL_FB_H_typedef struct{	int r; /* Red */	int g; /* Green */	int b; /* Blue */	int t; /* Transparency */} fb_color_t;void fb_open();void fb_close();void fb_set_text_color(fb_color_t *color);void fb_set_back_color(fb_color_t *color);void fb_pixel(int x, int y, fb_color_t *color);int fb_putc(int x, int y, char c);int fb_puts(int x, int y, const char *str);#endif /* _LOCAL_FB_H_ */

⌨️ 快捷键说明

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