musl-tcc/src/network/ntohs.c

9 lines
146 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <netinet/in.h>
#include <byteswap.h>
uint16_t ntohs(uint16_t n)
{
union { int i; char c; } u = { 1 };
return u.c ? bswap_16(n) : n;
}