Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
network
htons.c
pretty
plain
permalink
blame
history
•
8 lines
•
146 B
1
#include <netinet/in.h>
2
#include <byteswap.h>
3
4
uint16_t htons(uint16_t n)
5
{
6
	union { int i; char c; } u = { 1 };
7
	return u.c ? bswap_16(n) : n;
8
}