| 41 | } |
| 42 | |
| 43 | bool line_starts_with( std::ifstream& file, std::string_view check ) |
| 44 | { |
| 45 | std::string line; |
| 46 | std::getline( file, line ); |
| 47 | return string_starts_with( line, check ); |
| 48 | } |
| 49 | |
| 50 | void check_keyword( std::ifstream& file, std::string_view keyword ) |
| 51 | { |
no test coverage detected