?? eof.c
字號:
/* A module of ASYNCx.LIB version 1.02 */
#include <dos.h>
#include "asyncdef.h"
/************************************************************
Wait for at least t eighteenths of a second for a character
to arrive at port p. If no character arrives, return 1.
Otherwise return 0. Also if p is NULL return 1 so that
unopened ports seem to be in an eof state.
************************************************************/
int a_eof(register ASYNC *p,int t)
{unsigned long t0,far *t1;
if (p)
{t1=(unsigned long far *)MK_FP(0x40,0x6c);
t0=*t1;
while(p->ibufhead==p->ibuftail && (*t1)-t0<=(unsigned long)t);
if (p->ibuftail!=p->ibuftail)
return 0;
}
return 1;
} /* end of a_eof(p) */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -