summaryrefslogtreecommitdiff
path: root/src/lib/libc/net/ntohl.c
diff options
context:
space:
mode:
authorderaadt <>1995-10-18 08:42:23 +0000
committerderaadt <>1995-10-18 08:42:23 +0000
commit0527d29da443886d92e9a418180c5b25a5f8d270 (patch)
tree86b3a64928451a669cefa27900e5884036b4e349 /src/lib/libc/net/ntohl.c
downloadopenbsd-0527d29da443886d92e9a418180c5b25a5f8d270.tar.gz
openbsd-0527d29da443886d92e9a418180c5b25a5f8d270.tar.bz2
openbsd-0527d29da443886d92e9a418180c5b25a5f8d270.zip
initial import of NetBSD tree
Diffstat (limited to 'src/lib/libc/net/ntohl.c')
-rw-r--r--src/lib/libc/net/ntohl.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lib/libc/net/ntohl.c b/src/lib/libc/net/ntohl.c
new file mode 100644
index 0000000000..05b7f4c9a3
--- /dev/null
+++ b/src/lib/libc/net/ntohl.c
@@ -0,0 +1,29 @@
1/* $NetBSD: ntohl.c,v 1.5 1995/04/28 23:25:21 jtc Exp $ */
2
3/*
4 * Written by J.T. Conklin <jtc@netbsd.org>.
5 * Public domain.
6 */
7
8#if defined(LIBC_SCCS) && !defined(lint)
9static char *rcsid = "$NetBSD: ntohl.c,v 1.5 1995/04/28 23:25:21 jtc Exp $";
10#endif
11
12#include <sys/types.h>
13#include <machine/endian.h>
14
15#undef ntohl
16
17unsigned long
18ntohl(x)
19 unsigned long x;
20{
21 u_int32_t y = x;
22
23#if BYTE_ORDER == LITTLE_ENDIAN
24 u_char *s = (u_char *)&y;
25 return s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3];
26#else
27 return y;
28#endif
29}