itimer.h
来自「凌阳数码相框专用开发工具,编译环境DOS」· C头文件 代码 · 共 24 行
H
24 行
#ifndef _ITIMER_H
#ifdef __cplusplus
extern "C" {
#endif
#define _ITIMER_H
#include <_ansi.h>
#include <sys/time.h>
#define ITIMER_REAL 0
#define ITIMER_VIRTUAL 1
#define ITIMER_PROF 2
struct itimerval {
struct timeval it_interval;
struct timeval it_value;
};
int _EXFUN(getitimer,( int which, struct itimerval *value ));
int _EXFUN(setitimer,( int which, struct itimerval *newval, struct itimerval *oldval ));
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?