⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itimer.h

📁 凌阳数码相框专用开发工具,编译环境DOS
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -