| 122 | ***************************************/ |
| 123 | |
| 124 | int UTIL_stat(const char* filename, stat_t* statbuf) |
| 125 | { |
| 126 | #if defined(_MSC_VER) |
| 127 | return !_stat64(filename, statbuf); |
| 128 | #elif defined(__MINGW32__) && defined (__MSVCRT__) |
| 129 | return !_stati64(filename, statbuf); |
| 130 | #else |
| 131 | return !stat(filename, statbuf); |
| 132 | #endif |
| 133 | } |
| 134 | |
| 135 | int UTIL_isRegularFile(const char* infilename) |
| 136 | { |
no test coverage detected