?? 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 + -