summaryrefslogtreecommitdiff
path: root/src/libc/include/arpa/inet.h
blob: d372467ae4a0c099beab300609e8801f8cbfe823 (plain)
1
2
3
4
5
6
7
8
#pragma once
#include <stdint.h>

uint32_t htonl(uint32_t n);
uint16_t htons(uint16_t n);

uint32_t ntohl(uint32_t n);
uint16_t ntohs(uint16_t n);