MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / isNameChar

Function isNameChar

externals/simplecpp/simplecpp.cpp:603–606  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

601}
602
603static bool isNameChar(int ch)
604{
605 return std::isalnum(ch) || ch == '_' || ch == '$';
606}
607
608static std::string escapeString(const std::string &str)
609{

Callers 2

readfileMethod · 0.85
preprocessMethod · 0.85

Calls 1

isalnumFunction · 0.85

Tested by

no test coverage detected