NetBSD/lib/libc/net/ntohs.c

28 lines
493 B
C
Raw Normal View History

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