1990-12-03 14:13:31 +00:00
|
|
|
/*
|
|
|
|
* isatty - check if a file descriptor is associated with a terminal
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1990-12-03 14:13:31 +00:00
|
|
|
|
2018-06-23 13:57:57 +00:00
|
|
|
#include <stdlib.h>
|
1990-12-03 14:13:31 +00:00
|
|
|
|
2018-06-23 13:57:57 +00:00
|
|
|
#if ACKCONF_WANT_TERMIOS
|
|
|
|
|
|
|
|
#include <termios.h>
|
|
|
|
int isatty(int fd)
|
1990-12-03 14:13:31 +00:00
|
|
|
{
|
2018-06-23 13:57:57 +00:00
|
|
|
struct termios dummy;
|
|
|
|
|
|
|
|
return(tcgetattr(fd, &dummy) == 0);
|
1990-12-03 14:13:31 +00:00
|
|
|
}
|
2018-06-23 13:57:57 +00:00
|
|
|
|
|
|
|
#endif
|