1995-10-07 12:26:14 +03:00
|
|
|
/* $NetBSD: htons.c,v 1.6 1995/10/07 09:26:27 mycroft Exp $ */
|
|
|
|
|
1993-10-28 01:00:42 +03:00
|
|
|
/*
|
1995-10-07 12:26:14 +03:00
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
|
|
* Public domain.
|
1993-10-28 01:00:42 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1995-10-07 12:26:14 +03:00
|
|
|
static char *rcsid = "$NetBSD: htons.c,v 1.6 1995/10/07 09:26:27 mycroft Exp $";
|
1993-10-28 01:00:42 +03:00
|
|
|
#endif
|
|
|
|
|
1995-01-06 03:10:05 +03:00
|
|
|
#include <sys/types.h>
|
1993-10-28 01:00:42 +03:00
|
|
|
#include <machine/endian.h>
|
|
|
|
|
|
|
|
#undef htons
|
|
|
|
|
|
|
|
unsigned short
|
1995-01-06 03:10:05 +03:00
|
|
|
htons(x)
|
1993-10-28 01:00:42 +03:00
|
|
|
unsigned short x;
|
|
|
|
{
|
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
1995-01-06 03:10:05 +03:00
|
|
|
u_char *s = (u_char *) &x;
|
1993-10-28 01:00:42 +03:00
|
|
|
return s[0] << 8 | s[1];
|
|
|
|
#else
|
|
|
|
return x;
|
|
|
|
#endif
|
|
|
|
}
|