| 107 | |
| 108 | #ifdef _WIN32 |
| 109 | static bool IsDriveLetter(char c) { |
| 110 | // Can't use locale-dependent functions from the C/C++ stdlib |
| 111 | return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'); |
| 112 | } |
| 113 | #endif |
| 114 | |
| 115 | bool DetectAbsolutePath(const std::string& s) { |
no outgoing calls
no test coverage detected