| 200 | } |
| 201 | |
| 202 | bool 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 | |
| 210 | bool initPostfixExpression(const char* infix, IExpressionFunctions* funcs, PostfixExpression& dest, std::string& error) |
| 211 | { |
no outgoing calls
no test coverage detected