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 / ISATTY.C < prev    next >
Text File  |  2000-06-30  |  256b  |  10 lines

  1.  
  2. extern int _device[];
  3. /*
  4. ** Return "true" if fd is a device, else "false"
  5. */
  6. isatty(fd) int fd; {
  7.   return (_device[fd]);
  8.   }
  9.  
  10.