| 15 | // should be implemented taking endianness into account |
| 16 | |
| 17 | inline bool IsBigEndianMacroBased() |
| 18 | { |
| 19 | #ifdef ENDIAN_IS_BIG |
| 20 | return true; |
| 21 | #else |
| 22 | return false; |
| 23 | #endif |
| 24 | } |
| 25 | |
| 26 | template <typename T> |
| 27 | T ReverseByteOrder(T t) |
no outgoing calls
no test coverage detected