home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource3
/
163_01
/
fileno.c
< prev
next >
Wrap
Text File
|
1988-02-01
|
384b
|
10 lines
/*
** return file number associated with stream
*/
#define FILE int
#include "streamio.h"
fileno(stream) FILE *stream; {
return stream[_IOB_FD];
}