1996-05-30 03:23:27 +04:00
|
|
|
/* $NetBSD: ntohs.c,v 1.6 1996/05/29 23:23:47 cgd Exp $ */
|
1995-02-25 06:34:50 +03:00
|
|
|
|
1993-08-31 23:00:11 +04:00
|
|
|
/*
|
1995-04-29 03:19:22 +04:00
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
|
|
* Public domain.
|
1993-08-31 23:00:11 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1996-05-30 03:23:27 +04:00
|
|
|
static char *rcsid = "$NetBSD: ntohs.c,v 1.6 1996/05/29 23:23:47 cgd Exp $";
|
1993-08-31 23:00:11 +04:00
|
|
|
#endif
|
|
|
|
|
1994-10-19 06:27:52 +03:00
|
|
|
#include <sys/types.h>
|
1993-08-31 23:00:11 +04:00
|
|
|
#include <machine/endian.h>
|
|
|
|
|
|
|
|
#undef ntohs
|
|
|
|
|
|
|
|
unsigned short
|
1994-10-19 06:27:52 +03:00
|
|
|
ntohs(x)
|
1993-08-31 23:00:11 +04:00
|
|
|
unsigned short x;
|
|
|
|
{
|
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
1994-10-19 06:27:52 +03:00
|
|
|
u_char *s = (u_char *) &x;
|
1996-05-30 03:23:27 +04:00
|
|
|
return (u_int16_t)(s[0] << 8 | s[1]);
|
1993-08-31 23:00:11 +04:00
|
|
|
#else
|
|
|
|
return x;
|
|
|
|
#endif
|
|
|
|
}
|