摘要:
fileno()函数功 能:把文件流指针转换成文件描述符相关函数:open, fopen表头文件:#include <stdio.h>定义函数:int fileno(FILE *stream)函数说明:fileno()用来取得参数stream指定的文件流所使用的文件描述词返回值 :返回和stream文件流对应的文件描述符。如果失败,返回-1。范例:#include <stdio.h>main(){ FILE *fp; int fd; fp = fopen("/etc/passwd", "r"); fd = fileno(fp); 阅读全文
2011年3月21日 #