Archived
1
0
Fork 0
This repository has been archived on 2022-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
mipt_clang/data/meteorit.c
2022-03-07 15:57:12 +03:00

10 lines
154 B
C

union data convert(union data x) {
int i;
for (i = 0; i < 4; ++i) {
uint8_t z = x.arr[i];
x.arr[i] = x.arr[7-i];
x.arr[7-i] = z;
}
return x;
}