| 1467 | /* OPERAND is of the form "X=...". Return true if X is NAME. */ |
| 1468 | |
| 1469 | ATTRIBUTE_PURE |
| 1470 | static bool |
| 1471 | operand_is (char const *operand, char const *name) |
| 1472 | { |
| 1473 | return operand_matches (operand, name, '='); |
| 1474 | } |
| 1475 | |
| 1476 | static void |
| 1477 | scanargs (int argc, char *const *argv) |
no test coverage detected