cpu-endian 0.1.1

`cpu-endian` is a portable crate to detect CPU byte order. It detects how CPU native scalar type is ordered; little-endian or big-endian, or something else (like PDP-endian, mixed-endian, middle-endian, and so on.)
Documentation
extern crate cc;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
fn main() {}

#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
fn main() {
    cc::Build::new()
        .cpp(true)
        .flag("--std=c++20")
        .file("c_src/native_endian.cpp")
        .compile("native_endian_")
}