Handle <=, =>, ==, !=, > and < operators */
| 489 | |
| 490 | /* Handle <=, =>, ==, !=, > and < operators */ |
| 491 | static Condition* Compare(const char** str) |
| 492 | { |
| 493 | return InfixOperator(str, Sum, CompareOperators); |
| 494 | } |
| 495 | |
| 496 | /* Check for || or && operators */ |
| 497 | static int ConnectOperators(const char** str) |
nothing calls this directly
no test coverage detected