Iros
 
Loading...
Searching...
No Matches
endian.h
Go to the documentation of this file.
1#pragma once
2
3namespace di::bit {
4enum class Endian {
5 Little = __ORDER_LITTLE_ENDIAN__,
6 Big = __ORDER_BIG_ENDIAN__,
7 Native = __BYTE_ORDER__,
8};
9}
10
11namespace di {
12using bit::Endian;
13}
Definition bit_proxy_reference.h:5
Endian
Definition endian.h:4
@ Little
Definition endian.h:5
@ Native
Definition endian.h:7
@ Big
Definition endian.h:6
Definition zstring_parser.h:9