SilverScreen Solid Modeler

fileno

fileno

Previous topic Next topic  

fileno

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

int fileno( FILE *fp )

 

FILE *fp;      /* an open stream */

 

 

 




Synopsis

#include "stdio.h"

 

The fileno function returns the file handle to an open stream.

 

 

Parameters

fp is an open stream.

 

 

Return Value

fileno returns the file handle associated with fp .

 

 

Comments

This function is probably not very useful currently.