time.h

来自「在x86平台上运行不可信任代码的sandbox。」· C头文件 代码 · 共 20 行

H
20
字号
#ifndef _SYS_TIME_H#define _SYS_TIME_H#include <sys/types.h>struct timeval {	time_t		tv_sec;		// Seconds	suseconds_t	tv_usec;	// Microseconds};struct itimerval {	struct timeval	it_interval;	// Timer interval	struct timeval	it_value;	// Current value};struct timezone;int gettimeofday(struct timeval *__restrict, struct timezone *__restrict);#endif	// _SYS_TIME_H

⌨️ 快捷键说明

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