q/lib/net/htons.q

3 lines
No EOL
66 B
Text

htons(num Int) -> Int {
return ((num & 0xFF) << 8) | (num >> 8)
}