MCPcopy Create free account
hub / github.com/GPUOpen-Tools/GPU-Reshape / IsPathDelim

Function IsPathDelim

Source/Libraries/Common/Source/FileSystem.cpp:148–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146}
147
148static bool IsPathDelim(char _char) {
149 switch (_char) {
150 default:
151 return false;
152 case '\\':
153 case '/':
154 return true;
155 }
156}
157
158std::string SanitizePath(const std::string_view &view) {
159 std::string path;

Callers 1

SanitizePathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected