summaryrefslogtreecommitdiff
path: root/src/libc/arpainet.c
diff options
context:
space:
mode:
authordzwdz2023-12-25 20:12:44 +0100
committerdzwdz2023-12-25 20:12:44 +0100
commit4be1fd62131f7e186e6f92f1bb5a356dc1ac1951 (patch)
tree54de3a2d99fe9d6e93ad45c5107aff5420f9900d /src/libc/arpainet.c
parentb9f5f92bff69059471a76e73539780eedb356455 (diff)
user/libc: reorganize net stuff, basic hosts-only gethostbyname()
/usr/share/hosts because i don't have /etc/ yet and i don't feel like creating it.
Diffstat (limited to 'src/libc/arpainet.c')
-rw-r--r--src/libc/arpainet.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/libc/arpainet.c b/src/libc/arpainet.c
deleted file mode 100644
index 125a855..0000000
--- a/src/libc/arpainet.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <arpa/inet.h>
-
-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);
-}