MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / isAlphaNum

Function isAlphaNum

pcsx2/DebugTools/ExpressionParser.cpp:202–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200}
201
202bool isAlphaNum(char c)
203{
204 return ((c >= '0' && c <= '9') ||
205 (c >= 'A' && c <= 'Z') ||
206 (c >= 'a' && c <= 'z') ||
207 c == '@' || c == '_' || c == '$' || c == '.');
208}
209
210bool initPostfixExpression(const char* infix, IExpressionFunctions* funcs, PostfixExpression& dest, std::string& error)
211{

Callers 1

initPostfixExpressionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected