11 lines
325 B
C
11 lines
325 B
C
/* $NetBSD: byteswap.h,v 1.2 1998/01/05 07:03:16 perry Exp $ */
|
|
|
|
/*
|
|
* inline macros for doing byteswapping on a little-endian machine.
|
|
* for boot.
|
|
*/
|
|
#define ntohs(x) \
|
|
( ( ((u_short)(x)&0xff) << 8) | ( ((u_short) (x)&0xff00) >> 8) )
|
|
#define ntohl(x) \
|
|
( ((ntohs((u_short)(x))) << 16) | (ntohs( (u_short) ((x)>>16) )) )
|