sleep.h

来自「web服务器访问统计」· C头文件 代码 · 共 15 行

H
15
字号
/* compatibility for the unix/win32 sleep() function */#ifndef __VI_SLEEP_H#define __VI_SLEEP_H#ifdef WIN32#include <windows.h>#define vi_sleep(x) Sleep((x)*1000)#else#include <unistd.h>#define vi_sleep(x) sleep(x)#endif#endif /* __VI_SLEEP_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?