23 lines
329 B
C
23 lines
329 B
C
/* $NetBSD: htons.c,v 1.1 1999/11/11 20:21:59 thorpej Exp $ */
|
|
|
|
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include "stand.h"
|
|
|
|
#undef htons
|
|
|
|
u_int16_t
|
|
htons(x)
|
|
u_int16_t x;
|
|
{
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
u_char *s = (u_char *) &x;
|
|
return (u_int16_t)(s[0] << 8 | s[1]);
|
|
#else
|
|
return x;
|
|
#endif
|
|
}
|