函数名:isatty
头文件:<io.h>
函数原型: int isatty(int handle);
功能: 检查给定的设备类型
参数:int handle 为要检查的设备文件句柄
返回值: 普通文件 返回0 ,设备 返回-1
补充:
常用设备名:
stdin 标准输入设备 键盘
stdout 标准输出设备 显示器
stderr 标准错误设备
stdaux 辅助设备
stdprn 打印机
程序例:使用该函数判断设备和普通文件,并输出提示
#include<stdio.h>#include<io.h>#include<fcntl.h>intmain(void){intfd=fileno(stdout);//获取标准输出设备的文件号if(isatty(fd)){//判断是设备文件还是普通文件printf(%disdevice,fd);}else{printf(%disfile,fd);}putchar('n');close(fd);return0;}
运行结果
1isdevice