|  | ||
| 
 | 
 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. | 
 | 
| 
 | 
 |