| 595 | /* Return true if at least one more line is available for input. */ |
| 596 | |
| 597 | static bool |
| 598 | no_more_lines (void) |
| 599 | { |
| 600 | return find_line (current_line + 1) == NULL; |
| 601 | } |
| 602 | |
| 603 | /* Open NAME as standard input. */ |
| 604 |
no test coverage detected