time.h
来自「一个很好功能很完善的文本编辑器」· C头文件 代码 · 共 24 行
H
24 行
#ifndef SYS_TIME_H_INCLUDED#define SYS_TIME_H_INCLUDED/* * sys/time.h doesn't exist on NT */struct timeval { long tv_sec; /* seconds */ long tv_usec; /* microseconds */ };struct timezone { int tz_minuteswest; /* minutes west of Greenwich */ int tz_dsttime; /* type of dst correction */ };void gettimeofday (struct timeval *, struct timezone *);#endif /* SYS_TIME_H_INCLUDED *//* end of sys/time.h */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?