vpl_fileno.h
Go to the documentation of this file.
1 // This is core/vpl/vpl_fileno.h
2 #ifndef vpl_fileno_h_
3 #define vpl_fileno_h_
4 //:
5 // \file
6 
7 #include <cstdio>
8 #ifdef _MSC_VER
9 # include <vcl_msvc_warnings.h>
10 #endif
11 #include "vpl/vpl_export.h"
12 
13 //: Return the file descriptor (int) of an open file stream (FILE *).
14 extern VPL_EXPORT int vpl_fileno(std::FILE *fp);
15 
16 #endif
VPL_EXPORT int vpl_fileno(std::FILE *fp)
Return the file descriptor (int) of an open file stream (FILE *).
Definition: vpl_fileno.cxx:4