]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/endian.3
mdoc.7: wfix
[thirdparty/man-pages.git] / man3 / endian.3
CommitLineData
d35a6673
MK
1.\" Copyright (C) 2009, Linux Foundation, written by Michael Kerrisk
2.\" <mtk.manpages@gmail.com>
3.\" a few pieces remain from an earlier version
4.\" Copyright (C) 2008, Nanno Langstraat <nal@ii.nl>
5.\"
93015253 6.\" %%%LICENSE_START(VERBATIM)
d35a6673
MK
7.\" Permission is granted to make and distribute verbatim copies of this
8.\" manual provided the copyright notice and this permission notice are
9.\" preserved on all copies.
10.\"
11.\" Permission is granted to copy and distribute modified versions of this
12.\" manual under the conditions for verbatim copying, provided that the
13.\" entire resulting derived work is distributed under the terms of a
14.\" permission notice identical to this one.
15.\"
16.\" Since the Linux kernel and libraries are constantly changing, this
17.\" manual page may be incorrect or out-of-date. The author(s) assume no
18.\" responsibility for errors or omissions, or for damages resulting from
19.\" the use of the information contained herein. The author(s) may not
20.\" have taken the same level of care in the production of this manual,
21.\" which is licensed free of charge, as they might when working
22.\" professionally.
23.\"
24.\" Formatted or processed versions of this manual, if unaccompanied by
25.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 26.\" %%%LICENSE_END
d35a6673 27.\"
b8efb414 28.TH ENDIAN 3 2016-10-08 "GNU" "Linux Programmer's Manual"
d35a6673
MK
29.SH NAME
30htobe16, htole16, be16toh, le16toh, htobe32, htole32, be32toh, le32toh,
31htobe64, htole64, be64toh, le64toh \-
32convert values between host and big-/little-endian byte order
33.SH SYNOPSIS
34.nf
d35a6673
MK
35.B #include <endian.h>
36
37.BI "uint16_t htobe16(uint16_t " host_16bits );
38.BI "uint16_t htole16(uint16_t " host_16bits );
39.BI "uint16_t be16toh(uint16_t " big_endian_16bits );
40.BI "uint16_t le16toh(uint16_t " little_endian_16bits );
41
42.BI "uint32_t htobe32(uint32_t " host_32bits );
43.BI "uint32_t htole32(uint32_t " host_32bits );
44.BI "uint32_t be32toh(uint32_t " big_endian_32bits );
45.BI "uint32_t le32toh(uint32_t " little_endian_32bits );
46
47.BI "uint64_t htobe64(uint64_t " host_64bits );
48.BI "uint64_t htole64(uint64_t " host_64bits );
49.BI "uint64_t be64toh(uint64_t " big_endian_64bits );
50.BI "uint64_t le64toh(uint64_t " little_endian_64bits );
51.fi
7f0ec8ee
MK
52.sp
53.in -4n
54Feature Test Macro Requirements for glibc (see
55.BR feature_test_macros (7)):
56.in
57.sp
58.BR htobe16 (),
59.BR htole16 (),
60.BR be16toh (),
61.BR le16toh (),
62.BR htobe32 (),
63.BR htole32 (),
64.BR be32toh (),
65.BR le32toh (),
66.BR htobe64 (),
67.BR htole64 (),
68.BR be64toh (),
69.BR le64toh ():
70.nf
71 Since glibc 2.19:
72 _DEFAULT_SOURCE
73 In glibc up to and including 2.19:
74 _BSD_SOURCE
75.fi
d35a6673
MK
76.SH DESCRIPTION
77These functions convert the byte encoding of integer values from
78the byte order that the current CPU (the "host") uses,
79to and from little-endian and big-endian byte order.
80
81The number,
82.IR nn ,
83in the name of each function indicates the size of
84integer handled by the function, either 16, 32, or 64 bits.
85
86The functions with names of the form "htobe\fInn\fP" convert
87from host byte order to big-endian order.
88
89The functions with names of the form "htole\fInn\fP" convert
90from host byte order to little-endian order.
91
92The functions with names of the form "be\fInn\fPtoh" convert
93from big-endian order to host byte order.
94
95The functions with names of the form "le\fInn\fPtoh" convert
96from little-endian order to host byte order.
97.SH VERSIONS
d95470fe 98These functions were added to glibc in version 2.9.
47297adb 99.SH CONFORMING TO
c8f2dd47 100These functions are nonstandard.
373d0736 101Similar functions are present on the BSDs,
d35a6673
MK
102where the required header file is
103.I <sys/endian.h>
104instead of
105.IR <endian.h> .
373d0736
MK
106Unfortunately,
107NetBSD, FreeBSD, and glibc haven't followed the original
108OpenBSD naming convention for these functions,
109whereby the
110.I nn
111component always appears at the end of the function name
112(thus, for example, in NetBSD, FreeBSD, and glibc,
113the equivalent of OpenBSDs "betoh32" is "be32toh").
d35a6673
MK
114.SH NOTES
115These functions are similar to the older
116.BR byteorder (3)
117family of functions.
118For example,
119.BR be32toh ()
120is identical to
f781a5b1 121.BR ntohl ().
d35a6673
MK
122
123The advantage of the
124.BR byteorder (3)
125functions is that they are standard functions available
008f1ecc 126on all UNIX systems.
d35a6673
MK
127On the other hand, the fact that they were designed
128for use in the context of TCP/IP means that
129they lack the 64-bit and little-endian variants described in this page.
130.SH EXAMPLE
131The program below display the results of converting an integer
132from host byte order to both little-endian and big-endian byte order.
133Since host byte order is either little-endian or big-endian,
134only one of these conversions will have an effect.
135When we run this program on a little-endian system such as x86-32,
136we see the following:
137.in +4n
138.nf
139
140$ \fB./a.out\fP
141x.u32 = 0x44332211
142htole32(x.u32) = 0x44332211
143htobe32(x.u32) = 0x11223344
144.fi
145.in
146.SS Program source
147\&
148.nf
149#include <endian.h>
150#include <stdint.h>
151#include <stdio.h>
152#include <stdlib.h>
153
154int
155main(int argc, char *argv[])
156{
157 union {
5a6194a4
MK
158 uint32_t u32;
159 uint8_t arr[4];
d35a6673
MK
160 } x;
161
162 x.arr[0] = 0x11; /* Lowest-address byte */
163 x.arr[1] = 0x22;
164 x.arr[2] = 0x33;
165 x.arr[3] = 0x44; /* Highest-address byte */
166
167 printf("x.u32 = 0x%x\\n", x.u32);
168 printf("htole32(x.u32) = 0x%x\\n", htole32(x.u32));
169 printf("htobe32(x.u32) = 0x%x\\n", htobe32(x.u32));
170
171 exit(EXIT_SUCCESS);
172}
173.fi
47297adb 174.SH SEE ALSO
cdff989b 175.BR bswap (3),
d35a6673 176.BR byteorder (3)