MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / isAsciiAlpha

Function isAsciiAlpha

Libraries/Testing/Testing.cpp:72–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70
71#if SC_PLATFORM_WINDOWS
72static bool isAsciiAlpha(native_char_t ch)
73{
74 return (ch >= static_cast<native_char_t>('a') && ch <= static_cast<native_char_t>('z')) ||
75 (ch >= static_cast<native_char_t>('A') && ch <= static_cast<native_char_t>('Z'));
76}
77#endif
78
79static size_t findRootLength(StringSpan path)

Callers 1

findRootLengthFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected