AFPBridge/endian.h
Stephen Heumann b5c3a29f37 Initial version, with test program.
It can currently send a GetStatus request and get a response.
2017-03-18 19:42:25 -05:00

18 lines
259 B
C

#ifndef ENDIAN_H
#define ENDIAN_H
#include <types.h>
/* Undefine these in case they're defined as macros */
#undef htons
#undef ntohs
#undef htonl
#undef ntohl
Word htons(Word);
Word ntohs(Word);
LongWord htonl(LongWord);
LongWord ntohl(LongWord);
#endif