endian(3)


NAME

   htobe16, htole16, be16toh, le16toh, htobe32, htole32, be32toh, le32toh,
   htobe64, htole64, be64toh, le64toh - convert values  between  host  and
   big-/little-endian byte order

SYNOPSIS

   #include <endian.h>

   uint16_t htobe16(uint16_t host_16bits);
   uint16_t htole16(uint16_t host_16bits);
   uint16_t be16toh(uint16_t big_endian_16bits);
   uint16_t le16toh(uint16_t little_endian_16bits);

   uint32_t htobe32(uint32_t host_32bits);
   uint32_t htole32(uint32_t host_32bits);
   uint32_t be32toh(uint32_t big_endian_32bits);
   uint32_t le32toh(uint32_t little_endian_32bits);

   uint64_t htobe64(uint64_t host_64bits);
   uint64_t htole64(uint64_t host_64bits);
   uint64_t be64toh(uint64_t big_endian_64bits);
   uint64_t le64toh(uint64_t little_endian_64bits);

   Feature Test Macro Requirements for glibc (see feature_test_macros(7)):

   htobe16(),   htole16(),  be16toh(),  le16toh(),  htobe32(),  htole32(),
   be32toh(), le32toh(), htobe64(), htole64(), be64toh(), le64toh():
       Since glibc 2.19:
           _DEFAULT_SOURCE
       In glibc up to and including 2.19:
           _BSD_SOURCE

DESCRIPTION

   These functions convert the byte encoding of integer  values  from  the
   byte  order that the current CPU (the "host") uses, to and from little-
   endian and big-endian byte order.

   The number, nn, in the name of each  function  indicates  the  size  of
   integer handled by the function, either 16, 32, or 64 bits.

   The  functions  with names of the form "htobenn" convert from host byte
   order to big-endian order.

   The functions with names of the form "htolenn" convert from  host  byte
   order to little-endian order.

   The  functions with names of the form "benntoh" convert from big-endian
   order to host byte order.

   The functions with names of the form  "lenntoh"  convert  from  little-
   endian order to host byte order.

VERSIONS

   These functions were added to glibc in version 2.9.

CONFORMING TO

   These  functions are nonstandard.  Similar functions are present on the
   BSDs, where the required  header  file  is  <sys/endian.h>  instead  of
   <endian.h>.  Unfortunately, NetBSD, FreeBSD, and glibc haven't followed
   the original OpenBSD naming convention for these functions, whereby the
   nn  component always appears at the end of the function name (thus, for
   example, in NetBSD, FreeBSD, and  glibc,  the  equivalent  of  OpenBSDs
   "betoh32" is "be32toh").

NOTES

   These  functions  are  similar  to  the  older  byteorder(3)  family of
   functions.  For example, be32toh() is identical to ntohl().

   The advantage of the byteorder(3) functions is that they  are  standard
   functions  available  on all UNIX systems.  On the other hand, the fact
   that they were designed for use in the context  of  TCP/IP  means  that
   they lack the 64-bit and little-endian variants described in this page.

EXAMPLE

   The  program  below  display  the results of converting an integer from
   host byte order to both little-endian and big-endian byte order.  Since
   host  byte  order  is  either  little-endian or big-endian, only one of
   these conversions will have an effect.  When we run this program  on  a
   little-endian system such as x86-32, we see the following:

       $ ./a.out
       x.u32 = 0x44332211
       htole32(x.u32) = 0x44332211
       htobe32(x.u32) = 0x11223344

   Program source

   #include <endian.h>
   #include <stdint.h>
   #include <stdio.h>
   #include <stdlib.h>

   int
   main(int argc, char *argv[])
   {
       union {
           uint32_t u32;
           uint8_t arr[4];
       } x;

       x.arr[0] = 0x11;     /* Lowest-address byte */
       x.arr[1] = 0x22;
       x.arr[2] = 0x33;
       x.arr[3] = 0x44;     /* Highest-address byte */

       printf("x.u32 = 0x%x\n", x.u32);
       printf("htole32(x.u32) = 0x%x\n", htole32(x.u32));
       printf("htobe32(x.u32) = 0x%x\n", htobe32(x.u32));

       exit(EXIT_SUCCESS);
   }

SEE ALSO

   bswap(3), byteorder(3)

COLOPHON

   This  page  is  part of release 4.09 of the Linux man-pages project.  A
   description of the project, information about reporting bugs,  and  the
   latest     version     of     this    page,    can    be    found    at
   https://www.kernel.org/doc/man-pages/.


More Linux Commands

manpages/truncl.3.html
truncl(3) - round to integer, toward zero - Linux man page
These functions round x to the nearest integer not larger in absolute value. RETURN VALUE These functions return the rounded integer value. If x is integral, in

manpages/snmptest.1.html
snmptest(1) - communicates with a network entity using SNMP
snmptest is a flexible SNMP application that can monitor and manage information on a network entity. After invoking the program, a command line interpreter proc

manpages/pto_var.1.html
pto_var(1) (Commands - Linux manual page)..................
pto_var is a command line tool, suitable for inclusion in shell scripts, and allows the change of image variables inside a Hugin .pto project file. Optimisation

manpages/xsetroot.1.html
xsetroot(1) - root window parameter setting utility for X...
The xsetroot program allows you to tailor the appearance of the background (root) window on a workstation display running X. Normally, you experiment with xsetr

manpages/ldap_set_option.3.html
ldap_set_option(3) - LDAP option handling routines (ManPage)
These routines provide access to options stored either in a LDAP handle or as global options, where applicable. They make use of a neutral interface, where the

manpages/podselect.1.html
podselect(1) - print selected sections of pod documentation
podselect will read the given input files looking for pod documentation and will print out (in raw pod format) all sections that match one ore more of the given

manpages/fanotify.7.html
fanotify(7) monitoring filesystem events - Linux man page...
The fanotify API provides notification and interception of filesystem events. Use cases include virus scanning and hierarchical storage management. Currently, o

manpages/CPU_FREE.3.html
CPU_FREE(3) - macros for manipulating CPU sets (Man Page)...
The cpu_set_t data structure represents a set of CPUs. CPU sets are used by sched_setaffinity(2) and similar interfaces. The cpu_set_t data type is implemented

manpages/netsnmp_pdu_api.3.html
netsnmp_pdu_api(3) - netsnmp_pdu_api functions (Man Page)...
These functions deal with SNMP request structures. snmp_pdu_create snmp_clone_pdu snmp_fix_pdu snmp_free_pdu SEE ALSO varbind_api(3) session_api(3) netsnmp_pdu_

manpages/vgimportclone.8.html
vgimportclone(8) - import and rename duplicated volume group
vgimportclone is used to import a duplicated VG (e.g. hardware snapshot). Duplicate VG(s) and PV(s) are not able to be used until they are made to coexist with

manpages/bounce.5.html
bounce(5) - Postfix bounce message template format (ManPage)
The Postfix bounce(8) server produces delivery status notification (DSN) messages for undeliverable mail, delayed mail, successful delivery or address verificat

manpages/XmbufGetVersion.3.html
XmbufGetVersion(3) - X multibuffering functions (Man Page)
The application programming library for the X11 Double-Buffering, Multi-Buffering, and Stereo Extension contains the interfaces described below. With the except





We can't live, work or learn in freedom unless the software we use is free.