9 lines
181 B
C
9 lines
181 B
C
|
#pragma once
|
||
|
|
||
|
#include <algorithm>
|
||
|
|
||
|
template <class T>
|
||
|
void endianSwap(T *objp) {
|
||
|
auto memp = reinterpret_cast<unsigned char*>(objp);
|
||
|
std::reverse(memp, memp + sizeof(T));
|
||
|
}
|