📄 settod.h
字号:
/*
* settimeofday() for non-djgpp targets
*
* The exported prototype used is used is the one specified in the
* XOpen/POSIX 1.3 standards and the one used on modern (ie 4.4BSD spec)
* BSDs. ie 'int settimeofday(struct timeval *, ...)', ie the second
* arg, if specified, is ignored.
*/
#ifndef __SETTIMEOFDAY_H
#define __SETTIMEOFDAY_H
#if !defined(__DJGPP__) /* djgpp already has [g|s]ettimeofday() */
extern int settimeofday (struct timeval *tv, ...);
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -