00001 // This is core/vpl/vpl_fdopen.h 00002 #ifndef vpl_fdopen_h_ 00003 #define vpl_fdopen_h_ 00004 //: 00005 // \file 00006 00007 #include <vcl_cstdio.h> 00008 00009 //: Turn an open file descriptor (int) into a file stream (FILE *). 00010 vcl_FILE *vpl_fdopen(int fd, char const *mode); 00011 00012 #endif