Add ntohs, htons, ntohl, htons.

This commit is contained in:
Colin Leroy-Mira
2023-09-06 08:09:00 +02:00
parent e52e350498
commit dfe7562f76
6 changed files with 217 additions and 0 deletions

10
include/arpa/inet.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef _ARPA_INET_H
#define _ARPA_INET_H
int __fastcall__ ntohs (int val);
int __fastcall__ htons (int val);
long __fastcall__ ntohl (long val);
long __fastcall__ htonl (long val);
#endif