?? delay.c
字號:
/* CXL - Copyright (c) 1987-1989 by Mike Smedley - All Rights Reserved */
/* DELAY.C - suspends execution for specified duration */
#include <dos.h>
#include "cxldef.h"
void delay_(unsigned duration)
{
unsigned long stop;
stop=timer()+(unsigned long)duration;
while(timer()<stop);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -