📄 time.h
字号:
/*sys/time.h*/#ifndef _SYS__TIME_H#define _SYS__TIME_H#include <ansi.h>/* Open Group Base Specifications Issue 6 (not complete) */struct timeval{ long /*time_t*/ tv_sec; long /*useconds_t*/ tv_usec;};int gettimeofday(struct timeval *_RESTRICT tp, void *_RESTRICT tzp);/* Compatibility with other Unix systems */int settimeofday(const struct timeval *tp, const void *tzp);#endif /* _SYS__TIME_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -