2020-12-12 06:33:20 +00:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
|
|
|
|
2020-02-12 05:30:50 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
2020-12-12 06:33:20 +00:00
|
|
|
#include <stdio.h>
|
2020-02-12 05:30:50 +00:00
|
|
|
|
|
|
|
int main() {
|
|
|
|
if(isatty(fileno(stdin))) {
|
|
|
|
printf("%s\n", ttyname(0));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
printf("not a tty\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|