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

📄 sleepus.c

📁 apue第二版每一章节的c语言源码
💻 C
字号:
#include	<sys/types.h>#include	<poll.h>#include	<stropts.h>#include	"ourhdr.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 + -