📄 figc.16
字号:
#include <poll.h>voidsleep_us(unsigned int nusecs){ struct pollfd dummy; int timeout; if ((timeout = nusecs / 1000) <= 0) timeout = 1; poll(&dummy, 0, timeout);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -