Handle + and - operators */
| 459 | |
| 460 | /* Handle + and - operators */ |
| 461 | static Condition* Sum(const char** str) |
| 462 | { |
| 463 | return InfixOperator(str, Term, SumOperators); |
| 464 | } |
| 465 | |
| 466 | /* Check for <=, =>, ==, !=, > and < operators */ |
| 467 | static int CompareOperators(const char** str) |
nothing calls this directly
no test coverage detected