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

📄 clock.h

📁 raywill写的操作系统内核
💻 H
字号:
#ifndef __MARAY_CLOCK
#define __MARAY_CLOCK

typedef struct{
	/* Attention! month counts from ZERO,NOT one */
	unsigned char sec,min,hour,day,month;
	unsigned short year;
	unsigned char week;
} sys_time;

void init_system_clock(sys_time *tm);
sys_time *update_sys_time(int timefly);
char *timetostr(sys_time *tm,char *tstr);

#endif

⌨️ 快捷键说明

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