main.c

来自「在字符终端显示时钟 fb」· C语言 代码 · 共 35 行

C
35
字号
#include <stdio.h>#include <time.h>#include "fb.h"extern int max_text_row;int main (){	time_t now;	char *buf;	fb_color_t color;	fb_open();	color.r = 255;	color.g = 100;	color.b = 100;	color.t = 0;	fb_set_text_color(&color);	while (1)	{		now = time(NULL);		buf = ctime(&now);		buf = strchr(buf, ':') - 2;		buf[8] = '\0';		fb_puts(max_text_row-9, 0, buf);		usleep(50);	}	fb_close();	return 0;}

⌨️ 快捷键说明

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