micro-utils/src/tty.c

14 lines
168 B
C
Raw Normal View History

2024-07-01 10:23:00 +00:00
#include <unistd.h>
#include <stdio.h>
int main(void) {
char *tty = ttyname(STDIN_FILENO);
if (tty)
puts(tty);
else
puts("not a tty");
return tty == NULL;
}