| 177 | } |
| 178 | |
| 179 | std::tuple<unsigned int, unsigned int, int> parse_ppm_header(std::ifstream &fs) |
| 180 | { |
| 181 | return parse_netpbm_format_header(fs, '6'); |
| 182 | } |
| 183 | |
| 184 | std::tuple<unsigned int, unsigned int, int> parse_pgm_header(std::ifstream &fs) |
| 185 | { |
no test coverage detected