ptr-utils 0.1.1

A lightweight library providing utilities for working with raw pointers.
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!(concat!("../", env!("CARGO_PKG_README")))]
#![no_std]
#[cfg(feature = "std")]
extern crate std;

pub mod unaligned;

pub use unaligned::{UnalignedRead, UnalignedWrite};