MCPcopy Create free account
hub / github.com/apache/arrow / IsDriveLetter

Function IsDriveLetter

cpp/src/arrow/filesystem/util_internal.cc:109–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107
108#ifdef _WIN32
109static 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
115bool DetectAbsolutePath(const std::string& s) {

Callers 1

DetectAbsolutePathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected