10 lines
102 B
C
10 lines
102 B
C
#include <sgtty.h>
|
|
|
|
isatty(f)
|
|
{
|
|
struct sgttyb ttyb;
|
|
|
|
if (gtty(f, &ttyb) < 0) return 0;
|
|
return 1;
|
|
}
|