modmemchr;// For debugging, particularly in CI, print out the byte order of the current
// target.
#[cfg(all(feature ="std", target_endian ="little"))]#[test]fnbyte_order(){eprintln!("LITTLE ENDIAN");}#[cfg(all(feature ="std", target_endian ="big"))]#[test]fnbyte_order(){eprintln!("BIG ENDIAN");}