| 190 | |
| 191 | |
| 192 | uint32_t diff_files(const std::string& file1, const std::string& file2, uint32_t ignorable_start, |
| 193 | uint32_t ignorable_length) |
| 194 | { |
| 195 | uint32_t start[] = { ignorable_start }; |
| 196 | uint32_t len[] = { ignorable_length }; |
| 197 | return diff_files(file1, file2, start, len, 1); |
| 198 | } |
| 199 | |
| 200 | |
| 201 | // do a byte-wise comparison of two (binary) files |