home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 223_01 / isatty.c < prev    next >
Text File  |  1979-12-31  |  384b  |  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.