isatty.c 197 B

1234567891011
  1. #include <stdio.h>
  2. #include <unistd.h>
  3. int main(void) {
  4. // 1 is stdout
  5. if (isatty(1)) {
  6. puts("'Tis a tty :D");
  7. } else {
  8. puts("Whatever a tty is, it's not me");
  9. }
  10. }