| 140 | } |
| 141 | |
| 142 | bool IsSamePath(const char *p1, const char *p2) { |
| 143 | // assume windows is the only OS with a case insensitive filesystem and ignore all path complications |
| 144 | #ifndef _WIN32 |
| 145 | return !strcmp(p1, p2); |
| 146 | #else |
| 147 | return !_stricmp(p1, p2); |
| 148 | #endif |
| 149 | } |
| 150 | |
| 151 | bool IsIOError(int error) { |
| 152 | switch (error) { |
no outgoing calls
no test coverage detected