mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
19 lines
212 B
C++
19 lines
212 B
C++
#include <cstdlib>
|
|
|
|
#include "binary.h"
|
|
|
|
int main()
|
|
{
|
|
if (sizeof(imageBytes) != 8) {
|
|
return 1;
|
|
}
|
|
|
|
for (size_t i = 0; i < 8; i++) {
|
|
if (imageBytes[i] != i) {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|