| 182 | } |
| 183 | |
| 184 | std::tuple<unsigned int, unsigned int, int> parse_pgm_header(std::ifstream &fs) |
| 185 | { |
| 186 | return parse_netpbm_format_header(fs, '5'); |
| 187 | } |
| 188 | |
| 189 | void check_image_size(std::ifstream &fs, size_t raw_size) |
| 190 | { |
no test coverage detected