home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Portable Patmos 1.1 / patmos-src / src / isatty.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-19  |  237 b   |  17 lines  |  [TEXT/KAHL]

  1. #include <fcntl.h>
  2. #include <sys/types.h>
  3. #include <sys/errno.h>
  4. #include <sys/ioctl.h>
  5. #include <sys/tty.h>
  6. #include <stdio.h>
  7. #include <unistd.h>
  8.  
  9. int
  10. isatty(fd)
  11.     int fd;
  12. {
  13.     struct termios t;
  14.  
  15.     return(ioctl(fd, TIOCGETA, &t) != -1);
  16. }
  17.