home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / gen / isatty.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  145 b   |  15 lines

  1. /*
  2.  * Returns 1 iff file is a tty
  3.  */
  4.  
  5. #include <sgtty.h>
  6.  
  7. isatty(f)
  8. {
  9.     struct sgttyb ttyb;
  10.  
  11.     if (gtty(f, &ttyb) < 0)
  12.         return(0);
  13.     return(1);
  14. }
  15.