home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / lambda / soundpot / p / sclib2.lbr / ISATTY.CZ / ISATTY.C
Encoding:
C/C++ Source or Header  |  1993-10-25  |  256 b   |  12 lines

  1. /*
  2. ** Return "true" if fd is a device, else "false"
  3. */
  4. #include <stdio.h>
  5.  
  6. isatty(fd) int fd; {
  7.    if(fd >255)
  8.       return(FALSE);
  9.    else
  10.       return(TRUE);
  11.   }
  12.