2001-08-22 11:42:07 +04:00
|
|
|
/* $NetBSD: htonl.c,v 1.10 2001/08/22 07:42:09 itojun 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
|
|
|
*/
|
|
|
|
|
1997-07-13 23:57:30 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-08-31 23:00:11 +04:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
2001-08-22 11:42:07 +04:00
|
|
|
__RCSID("$NetBSD: htonl.c,v 1.10 2001/08/22 07:42:09 itojun 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
|
|
|
|
|
|
|
#undef htonl
|
|
|
|
|
2001-08-22 11:42:07 +04:00
|
|
|
uint32_t
|
1994-10-19 06:27:52 +03:00
|
|
|
htonl(x)
|
2001-08-22 11:42:07 +04:00
|
|
|
uint32_t x;
|
1993-08-31 23:00:11 +04:00
|
|
|
{
|
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
1996-10-17 05:39:40 +04:00
|
|
|
u_char *s = (u_char *)&x;
|
2001-08-22 11:42:07 +04:00
|
|
|
return (uint32_t)(s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3]);
|
1993-08-31 23:00:11 +04:00
|
|
|
#else
|
1996-10-13 08:08:34 +04:00
|
|
|
return x;
|
1993-08-31 23:00:11 +04:00
|
|
|
#endif
|
|
|
|
}
|