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

📄 time.h

📁 这是又一个C语言解释器, 我们可以方便地扩展其功能, 并将其用于我们的工作中
💻 H
字号:
#define CLOCKS_PER_SEC 100000struct  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    *tm_zone;        long    tm_gmtoff;};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);/**********      None standard SUNOS functions not implemented in EiCchar *strptime(char *buf, char *fmt, struct tm * tm);time_t timegm(struct tm *tm);time_t timelocal(struct tm *tm);void tzset();void tzsetwall();int dysize(int y);***********/

⌨️ 快捷键说明

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