FACT++  1.0
template<typename S >
void ntoh ( S &  s)

Definition at line 37 of file ByteOrder.h.

Referenced by NtoH().

38 {
39  std::transform(reinterpret_cast<uint16_t*>(&s),
40  reinterpret_cast<uint16_t*>(&s)+sizeof(S)/2,
41  reinterpret_cast<uint16_t*>(&s),
42  ntohs);
43 }

+ Here is the caller graph for this function: