diff options
Diffstat (limited to 'src/network/ntohl.c')
-rw-r--r-- | src/network/ntohl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/network/ntohl.c b/src/network/ntohl.c new file mode 100644 index 0000000..d6fce45 --- /dev/null +++ b/src/network/ntohl.c @@ -0,0 +1,8 @@ +#include <netinet/in.h> +#include <byteswap.h> + +uint32_t ntohl(uint32_t n) +{ + union { int i; char c; } u = { 1 }; + return u.c ? bswap_32(n) : n; +} |