home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.barnyard.co.uk
/
2015.02.ftp.barnyard.co.uk.tar
/
ftp.barnyard.co.uk
/
cpm
/
walnut-creek-CDROM
/
CPM
/
SMALLC21
/
SMC21LIB.LBR
/
POLL.C
< prev
next >
Wrap
Text File
|
2000-06-30
|
384b
|
27 lines
#define NOCCARGC
#include stdio.h
#include clib.def
/*
** Poll for console input or interruption
*/
poll(pause) int pause; {
int i;
i = _bdos(DCONIO, 255);
if(pause) {
if(i == PAUSE) {
while(!(i = _bdos(DCONIO, 255))) ;
if(i == ABORT) exit(0);
return (0);
}
if(i == ABORT) exit(0);
}
return(i);
}
if(d