1995-04-29 03:19:22 +04:00
|
|
|
/* $NetBSD: htonl.c,v 1.5 1995/04/28 23:25:14 jtc 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)
|
1995-04-29 03:19:22 +04:00
|
|
|
static char *rcsid = "$NetBSD: htonl.c,v 1.5 1995/04/28 23:25:14 jtc 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 htonl
|
|
|
|
|
|
|
|
unsigned long
|
1994-10-19 06:27:52 +03:00
|
|
|
htonl(x)
|
1993-08-31 23:00:11 +04:00
|
|
|
unsigned long x;
|
|
|
|
{
|
1994-10-19 06:27:52 +03:00
|
|
|
u_int32_t y = x;
|
|
|
|
|
1993-08-31 23:00:11 +04:00
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
1994-10-19 06:27:52 +03:00
|
|
|
u_char *s = (u_char *)&y;
|
1993-08-31 23:00:11 +04:00
|
|
|
return s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3];
|
|
|
|
#else
|
1994-10-19 06:27:52 +03:00
|
|
|
return y;
|
1993-08-31 23:00:11 +04:00
|
|
|
#endif
|
|
|
|
}
|