10 lines
161 B
C
10 lines
161 B
C
#include <stdio.h>
|
|
#include <io.h>
|
|
|
|
void main()
|
|
{
|
|
printf( "stdin is a %stty\n",
|
|
( isatty( fileno( stdin ) ) )
|
|
? "" : "not " );
|
|
}
|