time.h
来自「用于嵌入式Linux系统的标准C的库函数」· C头文件 代码 · 共 23 行
H
23 行
#ifndef _SYS_TIME_H#define _SYS_TIME_H#ifdef __cplusplusextern "C" {#endifstruct timeval { long tv_sec; long tv_usec;};typedef struct timestruc { time_t tv_sec; long tv_nsec;} timestruc_t;#ifdef __cplusplus}#endif#endif /* _SYS_TIME_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?