📄 time.h
字号:
#define CLOCKS_PER_SEC 2000struct tm { int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon; int tm_year; int tm_wday; int tm_yday; int tm_isdst;};char *asctime(struct tm * tm);clock_t clock(void);char *ctime(time_t * clock);double difftime(time_t t1, time_t t2);struct tm *gmtime(time_t *clock);struct tm *localtime(time_t *clock);time_t mktime(struct tm * tm);size_t strftime(char * buf, size_t bufsize,char * fmt,struct tm *tm);time_t time(time_t * tloc);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -