Go to the first, previous, next, last section, table of contents.


fileno

Syntax

#include <stdio.h>

int fileno(FILE *file);

Description

This function returns the raw file descriptor number that file uses for I/O.

Return Value

The file descriptor number.

Portability

not ANSI, POSIX


Go to the first, previous, next, last section, table of contents.