t_isatty.c
来自「apue第二版每一章节的c语言源码」· C语言 代码 · 共 11 行
C
11 行
#include "ourhdr.h"intmain(void){ printf("fd 0: %s\n", isatty(0) ? "tty" : "not a tty"); printf("fd 1: %s\n", isatty(1) ? "tty" : "not a tty"); printf("fd 2: %s\n", isatty(2) ? "tty" : "not a tty"); exit(0);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?