time.h
来自「Minix3.11的源码。[MINIX 3是一个为高可靠性应用而设计的自由且简洁」· C头文件 代码 · 共 23 行
H
23 行
/*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 + =
减小字号Ctrl + -
显示快捷键?