1996-10-17 05:41:35 +04:00
|
|
|
/* $NetBSD: htonl.c,v 1.8 1996/10/17 01:41:35 cgd Exp $ */
|
1995-10-07 12:26:14 +03:00
|
|
|
|
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)
|
1996-10-17 05:41:35 +04:00
|
|
|
static char *rcsid = "$NetBSD: htonl.c,v 1.8 1996/10/17 01:41:35 cgd 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
|
|
|
|
|
|
|
#undef htonl
|
|
|
|
|
1996-10-17 05:41:35 +04:00
|
|
|
in_addr_t
|
1995-01-06 03:10:05 +03:00
|
|
|
htonl(x)
|
1996-10-17 05:41:35 +04:00
|
|
|
in_addr_t x;
|
1993-10-28 01:00:42 +03:00
|
|
|
{
|
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
1996-10-17 05:41:35 +04:00
|
|
|
u_char *s = (u_char *)&x;
|
|
|
|
return (in_addr_t)(s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3]);
|
1993-10-28 01:00:42 +03:00
|
|
|
#else
|
1996-10-17 05:41:35 +04:00
|
|
|
return x;
|
1993-10-28 01:00:42 +03:00
|
|
|
#endif
|
|
|
|
}
|