Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
Cuda
/
Bin2C
/
verify.cpp
blob: 8eafb39bc42fff8ff036272afa6c83d0bbad3268 [
file
] [
log
] [
blame
] [
edit
]
#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
;
}