OSDN Git Service

4fbdf70960bcab953bce4807e9348b8fddd28693
[uclinux-h8/uClibc.git] / libc / inet / ntohl.c
1 /* vi: set sw=4 ts=4:
2  * Functions to convert between host and network byte order.
3  *
4  * Copyright (C) 2003 by Erik Andersen <andersen@uclibc.org>
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Library General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or (at your
9  * option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
14  * for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  */
20
21 #include <stdint.h>
22 #include <endian.h>
23 #include <byteswap.h>
24
25 #if __BYTE_ORDER == __BIG_ENDIAN
26 extern uint32_t ntohl (uint32_t x)
27 {
28         return x;
29 }
30
31 extern uint16_t ntohs (uint16_t x)
32 {
33         return x;
34 }
35
36 extern uint32_t htonl (uint32_t x)
37 {
38         return x;
39 }
40
41 extern uint16_t htons (uint16_t x)
42 {
43         return x;
44 }
45 #elif __BYTE_ORDER == __LITTLE_ENDIAN
46 extern uint32_t ntohl (uint32_t x)
47 {
48         return __bswap_32(x);
49 }
50
51 extern uint16_t ntohs (uint16_t x)
52 {
53         return __bswap_16(x);
54 }
55
56 extern uint32_t htonl (uint32_t x)
57 {
58         return __bswap_32(x);
59 }
60
61 extern uint16_t htons (uint16_t x)
62 {
63         return __bswap_16(x);
64 }
65 #else
66 #error "You seem to have an unsupported byteorder"
67 #endif