#include <math.h> #include <string> template <typename T> void ReverseOrder(T *_pStr, size_t _iSize) { unsigned char *pcPoint = (unsigned char*)_pStr; int iCount = floor(_iSize / 2); for (int i = 0; i < iCount; i++) { std::swap(*(pcPoint + i), *(pcPoint + _iSize - 1 - i)); } }