MCPcopy Create free account
hub / github.com/beefytech/Beef / IsIdentifierChar

Function IsIdentifierChar

IDEHelper/Clang/ClangHelper.cpp:441–447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

439}*/
440
441static bool IsIdentifierChar(char c)
442{
443 return (((c >= '0') && (c <= '9')) ||
444 ((c >= 'A') && (c <= 'Z')) ||
445 ((c >= 'a') && (c <= 'z')) ||
446 ((c == '_')));
447}
448
449struct ThreadProtect
450{

Callers 2

ClassifyMethod · 0.85
AutocompleteMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected