* and: * term * term '-a' and */
| 511 | * term '-a' and |
| 512 | */ |
| 513 | static bool |
| 514 | and (void) |
| 515 | { |
| 516 | bool value = true; |
| 517 | |
| 518 | while (true) |
| 519 | { |
| 520 | value &= term (); |
| 521 | if (! (pos < argc && streq (argv[pos], "-a"))) |
| 522 | return value; |
| 523 | advance (false); |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | /* |
| 528 | * or: |