clock.h
来自「录音方音的程序,调试的很不错.通过按键控制.在其他的地方下不到的!」· C头文件 代码 · 共 21 行
H
21 行
#ifndef __CLOCK_h__
#define __CLOCK_h__
// write your header here
extern void Clock_ISR();
extern void Clock_Start();
extern unsigned int Clock_GetYear();
extern unsigned int Clock_GetMon();
extern unsigned int Clock_GetDay();
extern unsigned int Clock_GetHour();
extern unsigned int Clock_GetMin();
extern unsigned int Clock_GetSec();
extern void Clock_SetYear(unsigned int Year);
extern void Clock_SetMon(unsigned int Mon);
extern void Clock_SetDay(unsigned int Day);
extern void Clock_SetHour(unsigned int Hour);
extern void Clock_SetMin(unsigned int Min);
extern void Clock_SetSec(unsigned int Sec);
extern const unsigned int Month_Day[12];
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?