NetBSD/sys/lib/libkern/ntohl.c

28 lines
496 B
C
Raw Normal View History

/* $NetBSD: ntohl.c,v 1.10 2001/08/22 07:42:08 itojun Exp $ */
1995-10-07 12:26:14 +03:00
/*
1995-10-07 12:26:14 +03:00
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
1998-03-27 04:29:58 +03:00
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: ntohl.c,v 1.10 2001/08/22 07:42:08 itojun Exp $");
#endif
1995-01-06 03:10:05 +03:00
#include <sys/types.h>
#undef ntohl
uint32_t
1995-01-06 03:10:05 +03:00
ntohl(x)
uint32_t x;
{
#if BYTE_ORDER == LITTLE_ENDIAN
1996-10-17 05:41:35 +04:00
u_char *s = (u_char *)&x;
return (uint32_t)(s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3]);
#else
1996-10-17 05:41:35 +04:00
return x;
#endif
}