mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-01-07 00:22:17 +01:00
0e77317955
* github.com/ema/qdisc * github.com/mdlayher/genetlink * github.com/mdlayher/wifi Signed-off-by: Ben Kochie <superq@gmail.com>
15 lines
301 B
Go
15 lines
301 B
Go
package nlenc
|
|
|
|
import "encoding/binary"
|
|
|
|
// NativeEndian returns the native byte order of this system.
|
|
func NativeEndian() binary.ByteOrder {
|
|
// Determine endianness by storing a uint16 in a byte slice.
|
|
b := Uint16Bytes(1)
|
|
if b[0] == 1 {
|
|
return binary.LittleEndian
|
|
}
|
|
|
|
return binary.BigEndian
|
|
}
|