MCPcopy Create free account
hub / github.com/LunarG/VulkanTools / IsPortableChar

Function IsPortableChar

vkconfig_core/path.cpp:706–712  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

704}
705
706static bool IsPortableChar(char c) {
707 if (c == '\\' || c == '/') return false;
708 if (c == '|' || c == '<' || c == '>') return false;
709 if (c == ':' || c == '*' || c == '?') return false;
710
711 return true;
712}
713
714bool IsPortableFilename(const std::string& s) {
715 if (s.empty()) {

Callers 1

IsPortableFilenameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected