|
tesseract 3.04.01
|
#include <stdio.h>Go to the source code of this file.
Defines | |
| #define | FOPENERROR 3000 |
Functions | |
| FILE * | Efopen (const char *Name, const char *Mode) |
| #define FOPENERROR 3000 |
| FILE* Efopen | ( | const char * | Name, |
| const char * | Mode | ||
| ) |
---------------------------------------------------------------------------- Public Function Prototype ----------------------------------------------------------------------------
This routine attempts to open the specified file in the specified mode. If the file can be opened, a pointer to the open file is returned. If the file cannot be opened, an error is trapped.
| Name | name of file to be opened |
| Mode | mode to be used to open file |
Definition at line 43 of file efio.cpp.
{
FILE *File;
char ErrorMessage[MAXERRORMESSAGE];
File = fopen (Name, Mode);
if (File == NULL) {
sprintf (ErrorMessage, "Unable to open %s", Name);
DoError(FOPENERROR, ErrorMessage);
return (NULL);
}
else
return (File);
} /* Efopen */