| 2293 | # else |
| 2294 | inline int FileNo(FILE* file) { return _fileno(file); } |
| 2295 | inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } |
| 2296 | inline int RmDir(const char* dir) { return _rmdir(dir); } |
| 2297 | inline bool IsDir(const StatStruct& st) { |
| 2298 | return (_S_IFDIR & st.st_mode) != 0; |
no test coverage detected