ntohl.c 146 B

12345678
  1. #include <netinet/in.h>
  2. #include <byteswap.h>
  3. uint32_t ntohl(uint32_t n)
  4. {
  5. union { int i; char c; } u = { 1 };
  6. return u.c ? bswap_32(n) : n;
  7. }