?? usleep.c
字號:
#ifdef HAVE_CONFIG_H# include <config.h>#endif#include "../src/rcsid.h"RCSID("$Id: usleep.c,v 1.4 2000/01/27 11:25:30 misiek Exp $")#include <sys/time.h>#include <sys/select.h>int usleep(unsigned usecs){ struct timeval t; t.tv_sec = usecs/10000000; t.tv_usec = usecs%1000000; (void) select(1, NULL, NULL, NULL, &t); return 0;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -