📄 _nap.c
字号:
#include "lib.h"#include <unistd.h>#include <time.h>#include "sys9.h"/* * This is an extension to POSIX */unsigned int_nap(unsigned int millisecs){ time_t t0, t1; t0 = time(0); if(_SLEEP(millisecs) < 0){ t1 = time(0); return t1-t0; } return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -