ptr_utils/
lib.rs

1#![doc = include_str!(concat!("../", env!("CARGO_PKG_README")))]
2#![no_std]
3#[cfg(feature = "std")]
4extern crate std;
5
6pub mod unaligned;
7
8pub use unaligned::{UnalignedRead, UnalignedWrite};