| 1557 | } |
| 1558 | |
| 1559 | static int is_empty_line(const char *bol, const char *eol) |
| 1560 | { |
| 1561 | while (bol < eol && isspace(*bol)) |
| 1562 | bol++; |
| 1563 | return bol == eol; |
| 1564 | } |
| 1565 | |
| 1566 | static int grep_source_1(struct grep_opt *opt, struct grep_source *gs, int collect_hits) |
| 1567 | { |
no outgoing calls
no test coverage detected