From 4e1a6f1b3c543b9fbeb882a9e97551f7c58ca65a Mon Sep 17 00:00:00 2001 From: dzwdz Date: Mon, 25 Dec 2023 18:36:02 +0100 Subject: ports: curl :^) had to do a lot of hacky stuff, but it's there. worked on this on and off for a while now --- src/libc/arpainet.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/libc/arpainet.c (limited to 'src/libc/arpainet.c') diff --git a/src/libc/arpainet.c b/src/libc/arpainet.c new file mode 100644 index 0000000..125a855 --- /dev/null +++ b/src/libc/arpainet.c @@ -0,0 +1,20 @@ +#include + +uint32_t htonl(uint32_t n) { + return ((n & 0xFF000000) >> 24) + | ((n & 0x00FF0000) >> 8) + | ((n & 0x0000FF00) << 8) + | ((n & 0x000000FF) << 24); +} + +uint16_t htons(uint16_t n) { + return (n >> 8) | (n << 8); +} + +uint32_t ntohl(uint32_t n) { + return htonl(n); +} + +uint16_t ntohs(uint16_t n) { + return htons(n); +} -- cgit v1.2.3