Check for || or && operators */
| 495 | |
| 496 | /* Check for || or && operators */ |
| 497 | static int ConnectOperators(const char** str) |
| 498 | { |
| 499 | int val = TwoCharOperator(str, '|', '|', OP_OR); |
| 500 | if(val) return val; |
| 501 | |
| 502 | val = TwoCharOperator(str, '&', '&', OP_AND); |
| 503 | if(val) return val; |
| 504 | |
| 505 | return OP_NO; |
| 506 | } |
| 507 | |
| 508 | /* Handle || and && operators */ |
| 509 | static Condition* Connect(const char** str) |
nothing calls this directly
no test coverage detected