Dotcpp  >  编程教程  >  io.h头文件  >  C语言isatty()函数:检查给定的设备类型

C语言isatty()函数:检查给定的设备类型

点击打开在线编译器,边学边练

函数名: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>

int main(void){

   int fd=fileno(stdout);  //获取标准输出设备的文件号

   if(isatty(fd)){  //判断是设备文件还是普通文件

      printf("%d is device",fd);

   }else{

      printf("%d is file",fd);

   }

   putchar('\n');

   close(fd);

   return 0;

}

 

运行结果

1 is device



本文固定URL:https://www.dotcpp.com/course/459

C语言函数库
assert.h头文件
ctype.h头文件
float.h头文件
io.h头文件
math.h头文件
mem.h头文件
setjmp.h头文件
stdio.h头文件
stdlib.h头文件
sigal.h头文件
string.h头文件
time.h头文件
Dotcpp在线编译      (登录可减少运行等待时间)