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 / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / ISCONS.C < prev    next >
Text File  |  2000-06-30  |  256b  |  16 lines

  1.  
  2. #include stdio.h
  3. #include clib.def
  4. extern int _device[];
  5. /*
  6. ** Determine if fd is the console
  7. */
  8. iscons(fd) int fd; {
  9.   return(_device[fd] == CPMCON);
  10.   }
  11.  
  12.  
  13.  
  14.  
  15.  
  16.